/* ==========================================================================
   Bets10 Custom Block Styles
   Additional styles for registered block styles and custom CSS classes.
   ========================================================================== */

/* ---- CTA Gold Button Style ---- */
.wp-block-button.is-style-bets10-cta .wp-block-button__link {
	background-color: var(--wp--preset--color--cta);
	color: var(--wp--preset--color--black);
	border-radius: 8px;
	font-weight: 700;
	padding: 12px 40px;
	transition: all 0.3s ease;
	border: none;
}

.wp-block-button.is-style-bets10-cta .wp-block-button__link:hover {
	background-color: var(--wp--preset--color--cta-hover);
	transform: translateY(-2px);
}

/* ---- Outline White Button Style ---- */
.wp-block-button.is-style-bets10-outline .wp-block-button__link {
	background: transparent;
	border: 1.5px solid var(--wp--preset--color--white);
	color: var(--wp--preset--color--white);
	border-radius: 4px;
	font-weight: 600;
	padding: 5px 10px;
	transition: all 0.3s ease;
}

.wp-block-button.is-style-bets10-outline .wp-block-button__link:hover {
	background: rgba(255, 255, 255, 0.15);
}

/* ---- Bets10 Card Group Style ---- */
.wp-block-group.is-style-bets10-card {
	background: var(--wp--preset--color--white);
	border: 1px solid var(--wp--preset--color--border-gray);
	border-radius: 8px;
	padding: 20px;
	transition: box-shadow 0.3s ease;
}

.wp-block-group.is-style-bets10-card:hover {
	box-shadow: var(--wp--preset--shadow--card);
}

/* ---- Promo Card Cover Style ---- */
.wp-block-cover.is-style-bets10-promo {
	border-radius: 15px;
	overflow: hidden;
	min-height: 300px;
	transition: transform 0.3s ease;
}

.wp-block-cover.is-style-bets10-promo:hover {
	transform: translateY(-4px);
}

/* ---- Mobile Sidebar & Hamburger ---- */
/* Moved to style.css — see Mobile Sidebar Navigation section */

/* ---- Scroll to Top Button ---- */
.scroll-to-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 44px;
	height: 44px;
	background: var(--wp--preset--color--primary);
	color: var(--wp--preset--color--white);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	font-size: 1.2rem;
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 50;
	transition: all 0.3s ease;
	box-shadow: var(--wp--preset--shadow--card);
}

.scroll-to-top.is-visible {
	display: flex;
}

.scroll-to-top:hover {
	background: var(--wp--preset--color--primary-dark);
	transform: translateY(-2px);
}

/* ---- Editor Specific ---- */
.editor-styles-wrapper {
	font-family: 'Roboto', Arial, sans-serif;
}

.editor-styles-wrapper .promo-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 15px;
}

@media (max-width: 1024px) {
	.editor-styles-wrapper .promo-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.editor-styles-wrapper .promo-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ─── Bets10 Hero Block ─────────────────────────── */
.hero-section {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	padding: 40px 20px;
}
.hero-section__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	display: block;
}
.hero-section__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}
.hero-section__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
}
.hero-section__inner {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

/* Hero payments row */
.hero-payments-row {
	gap: 12px !important;
	margin-top: 30px;
	flex-wrap: wrap;
}
.hero-payments-row .hero-payment-logo img,
.hero-payments-row figure img {
	height: 48px;
	width: auto;
	object-fit: contain;
	display: block;
}
