/* =========================
   STORE HERO PREMIUM
========================= */

.mmpf-store-hero {
	position: relative;
	z-index: 6;
	max-width: 1240px;
	margin: -90px auto 42px;
	padding: 0 24px;
}

.mmpf-store-hero-inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.8fr);
	gap: 28px;
	align-items: stretch;
	padding: 30px;
	border-radius: 30px;
	background:
		linear-gradient(135deg, rgba(255,255,255,0.96) 0%, rgba(246,250,253,0.94) 100%);
	border: 1px solid rgba(220, 230, 238, 0.95);
	box-shadow:
		0 18px 50px rgba(15, 23, 42, 0.10),
		0 2px 10px rgba(15, 23, 42, 0.04);
	backdrop-filter: blur(12px);
	overflow: hidden;
}

.mmpf-store-hero-inner::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at top left, rgba(16, 48, 87, 0.10), transparent 34%),
		radial-gradient(circle at bottom right, rgba(0, 140, 255, 0.08), transparent 28%);
	pointer-events: none;
}

.mmpf-store-hero-left,
.mmpf-store-hero-right {
	position: relative;
	z-index: 1;
}

.mmpf-store-hero-left {
	display: flex;
	align-items: center;
	gap: 24px;
	min-width: 0;
}

.mmpf-store-hero-avatar-wrap {
	flex: 0 0 116px;
	position: relative;
}

.mmpf-store-hero-avatar-wrap::after {
	content: "";
	position: absolute;
	inset: -8px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(16, 48, 87, 0.18), rgba(255,255,255,0.7));
	z-index: -1;
	filter: blur(6px);
}

.mmpf-store-hero-avatar {
	width: 116px;
	height: 116px;
	object-fit: cover;
	display: block;
	border-radius: 50%;
	border: 4px solid rgba(255,255,255,0.96);
	box-shadow:
		0 12px 32px rgba(15, 23, 42, 0.18),
		0 0 0 1px rgba(220, 230, 238, 0.9);
	background: #fff;
}

.mmpf-store-hero-content {
	flex: 1;
	min-width: 0;
}

.mmpf-store-hero-eyebrow {
	display: inline-block;
	margin-bottom: 8px;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(16, 48, 87, 0.08);
	color: #103057;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.10em;
	text-transform: uppercase;
}

.mmpf-store-hero-title {
	margin: 0 0 8px;
	font-size: 42px;
	line-height: 1;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #14293d;
	word-break: break-word;
}

.mmpf-store-hero-rating {
	margin-bottom: 12px;
	font-size: 14px;
	color: #64748b;
}

.mmpf-store-hero-tagline {
	margin: 0 0 16px;
	max-width: 720px;
	font-size: 15px;
	line-height: 1.65;
	color: #5f6f7d;
}

.mmpf-store-hero-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.mmpf-store-hero-chip {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 11px 15px;
	border-radius: 999px;
	background: rgba(255,255,255,0.82);
	border: 1px solid rgba(219, 228, 236, 0.95);
	box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
	min-width: 0;
	max-width: 100%;
}

.mmpf-store-hero-chip-icon {
	flex: 0 0 auto;
	font-size: 14px;
	line-height: 1;
	opacity: 0.85;
}

.mmpf-store-hero-chip-text {
	min-width: 0;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	color: #1f3a52;
	word-break: break-word;
	overflow-wrap: anywhere;
}

.mmpf-store-hero-right {
	display: flex;
	align-items: stretch;
}

.mmpf-store-hero-panel {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 24px;
	border-radius: 24px;
	background: linear-gradient(145deg, #103057 0%, #17456f 100%);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
	color: #ffffff;
}

.mmpf-store-hero-panel-label {
	margin-bottom: 10px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.72);
}

.mmpf-store-hero-panel-text {
	margin-bottom: 20px;
	font-size: 14px;
	line-height: 1.7;
	color: rgba(255,255,255,0.90);
}

.mmpf-store-hero-avatar,
.mmpf-store-header-avatar img {
	height: 116px !important;
	width: 116px !important;
}

.mmpf-store-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.mmpf-store-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 18px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.mmpf-store-btn:hover {
	transform: translateY(-1px);
	text-decoration: none;
}

.mmpf-store-btn-primary {
	background: #ffffff;
	color: #103057;
	box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.mmpf-store-btn-primary:hover {
	color: #103057;
	background: #f8fbff;
}

.mmpf-store-btn-secondary {
	background: rgba(255,255,255,0.12);
	color: #ffffff;
	border: 1px solid rgba(255,255,255,0.20);
}

.mmpf-store-btn-secondary:hover {
	color: #ffffff;
	background: rgba(255,255,255,0.18);
}

@media (max-width: 1024px) {
	.mmpf-store-hero-inner {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.mmpf-store-hero-right {
		display: block;
	}

	.mmpf-store-hero-panel {
		padding: 22px;
	}
}

@media (max-width: 768px) {
	.mmpf-store-hero {
		margin: -48px auto 28px;
		padding: 0 16px;
	}

	.mmpf-store-hero-inner {
		padding: 22px 18px;
		border-radius: 24px;
	}

	.mmpf-store-hero-left {
		flex-direction: column;
		align-items: flex-start;
		gap: 18px;
	}

	.mmpf-store-hero-avatar-wrap {
		flex-basis: auto;
	}

	.mmpf-store-hero-avatar {
		width: 92px;
		height: 92px;
	}

	.mmpf-store-hero-title {
		font-size: 32px;
	}

	.mmpf-store-hero-meta {
		gap: 10px;
	}

	.mmpf-store-hero-chip {
		width: 100%;
		border-radius: 16px;
	}
}

@media (max-width: 480px) {
	.mmpf-store-hero-title {
		font-size: 28px;
	}

	.mmpf-store-hero-panel {
		padding: 18px;
		border-radius: 20px;
	}

	.mmpf-store-hero-actions {
		flex-direction: column;
	}

	.mmpf-store-btn {
		width: 100%;
	}
}

/* Wrapper del botón de consulta WCFM */
#wcfmmp-store .mmpf-store-hero-actions .bd_icon_box .wcfm_store_enquiry,
#wcfmmp-store .mmpf-store-hero-actions .bd_icon_box a.wcfm_store_enquiry {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;

	height: 46px !important;
	min-height: 46px !important;
	padding: 0 18px !important;
	margin: 0 !important;

	background: rgba(255,255,255,0.12) !important;
	border: 1px solid rgba(255,255,255,0.20) !important;
	border-radius: 999px !important;
	box-shadow: none !important;

	text-decoration: none !important;
	float: none !important;
	width: auto !important;
	line-height: 1 !important;
	overflow: visible !important;
}

/* Texto del botón */
#wcfmmp-store .mmpf-store-hero-actions .bd_icon_box .wcfm_store_enquiry span,
#wcfmmp-store .mmpf-store-hero-actions .bd_icon_box a.wcfm_store_enquiry span {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;

	margin: 0 !important;
	padding: 0 !important;

	color: #ffffff !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	line-height: 1 !important;

	position: static !important;
	top: auto !important;
	left: auto !important;
	transform: none !important;
	opacity: 1 !important;
}

/* Icono si existe */
#wcfmmp-store .mmpf-store-hero-actions .bd_icon_box .wcfm_store_enquiry i,
#wcfmmp-store .mmpf-store-hero-actions .bd_icon_box a.wcfm_store_enquiry i {
	margin: 0 !important;
	color: #ffffff !important;
	font-size: 14px !important;
	line-height: 1 !important;
}

/* Hover */
#wcfmmp-store .mmpf-store-hero-actions .bd_icon_box .wcfm_store_enquiry:hover,
#wcfmmp-store .mmpf-store-hero-actions .bd_icon_box a.wcfm_store_enquiry:hover {
	background: rgba(255,255,255,0.18) !important;
	border-color: rgba(255,255,255,0.26) !important;
	transform: translateY(-1px) !important;
}

#wcfmmp-store .mmpf-store-hero-actions .bd_icon_box .wcfm_store_enquiry:hover span,
#wcfmmp-store .mmpf-store-hero-actions .bd_icon_box a.wcfm_store_enquiry:hover span,
#wcfmmp-store .mmpf-store-hero-actions .bd_icon_box .wcfm_store_enquiry:hover i,
#wcfmmp-store .mmpf-store-hero-actions .bd_icon_box a.wcfm_store_enquiry:hover i {
	color: #ffffff !important;
}

/* El contenedor no debe deformar el flex */
#wcfmmp-store .mmpf-store-hero-actions .bd_icon_box {
	display: inline-flex !important;
	align-items: center !important;
	margin: 0 !important;
	float: none !important;
}