/*
 * Block: Hero
 * BEM:   .euro-hair-hero
 */

.euro-hair-hero {
	padding: 140px 0 100px;
	position: relative;
	background: var(--color-white);
	overflow: hidden;
}

.euro-hair-hero::before {
	content: "";
	position: absolute;
	top: -200px;
	right: -200px;
	width: 700px;
	height: 700px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 87, 184, .08) 0%, transparent 65%);
	pointer-events: none;
	z-index: 0;
}

.euro-hair-hero::after {
	content: "";
	position: absolute;
	bottom: -300px;
	left: -200px;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 33, 71, .05) 0%, transparent 65%);
	pointer-events: none;
	z-index: 0;
}

.euro-hair-hero .euro-hair-container {
	position: relative;
	z-index: 1;
}

.euro-hair-hero__grid {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: 80px;
	align-items: center;
}

.euro-hair-hero__tag {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 16px;
	border-radius: var(--r-pill);
	background: rgba(0, 87, 184, .08);
	color: var(--color-royal);
	font-family: var(--font-sans);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	margin-bottom: 32px;
}

.euro-hair-hero__tag-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--color-royal);
	box-shadow: 0 0 0 4px rgba(0, 87, 184, .18);
	animation: euro-hair-pulse 2.4s ease-in-out infinite;
}

@keyframes euro-hair-pulse {
	0%, 100% { box-shadow: 0 0 0 4px rgba(0, 87, 184, .18); }
	50%      { box-shadow: 0 0 0 8px rgba(0, 87, 184, .04); }
}

.euro-hair-hero__heading {
	margin-bottom: 24px;
}

.euro-hair-hero__heading-accent {
	color: var(--color-royal);
	position: relative;
	display: inline-block;
}

.euro-hair-hero__heading-accent::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 6px;
	height: 8px;
	background: rgba(0, 87, 184, .18);
	z-index: -1;
}

.euro-hair-hero__subheading {
	font-size: 18px;
	line-height: 1.65;
	color: var(--color-body);
	margin-bottom: 40px;
	max-width: 520px;
}

.euro-hair-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 52px;
}

.euro-hair-hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
	padding-top: 32px;
	border-top: 1px solid var(--color-line);
}

.euro-hair-hero__meta-item {
	display: flex;
	align-items: center;
	gap: 12px;
}

.euro-hair-hero__meta-num {
	font-family: var(--font-sans);
	font-size: 30px;
	font-weight: 700;
	color: var(--color-navy);
	letter-spacing: -.02em;
	line-height: 1;
}

.euro-hair-hero__meta-num span {
	color: var(--color-royal);
}

.euro-hair-hero__meta-label {
	font-family: var(--font-sans);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--color-muted);
	line-height: 1.3;
	max-width: 14ch;
}

/* Visual side */
.euro-hair-hero__visual {
	position: relative;
}

.euro-hair-hero__ba-card {
	position: relative;
	background: var(--color-white);
	border-radius: var(--r-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	border: 1px solid var(--color-line);
}

.euro-hair-hero__ba-img {
	position: relative;
	aspect-ratio: 5 / 4;
	overflow: hidden;
	background: linear-gradient(135deg, #3a5a85, #0a2a55);
}

.euro-hair-hero__ba-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.euro-hair-hero__ba-divider {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 2px;
	background: var(--color-white);
	transform: translateX(-50%);
	z-index: 3;
	box-shadow: 0 0 0 1px rgba(0, 33, 71, .1);
}

.euro-hair-hero__ba-divider::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--color-white);
	transform: translate(-50%, -50%);
	box-shadow: 0 4px 12px rgba(0, 33, 71, .2);
	background-image: linear-gradient(90deg, transparent calc(50% - .5px), var(--color-royal) calc(50% - .5px), var(--color-royal) calc(50% + .5px), transparent calc(50% + .5px));
}

.euro-hair-hero__ba-label {
	position: absolute;
	top: 18px;
	padding: 8px 16px;
	background: rgba(255, 255, 255, .96);
	backdrop-filter: blur(8px);
	font-family: var(--font-sans);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--color-navy);
	border-radius: var(--r-pill);
	z-index: 4;
}

.euro-hair-hero__ba-label--before { left: 18px; }
.euro-hair-hero__ba-label--after  {
	right: 18px;
	background: var(--color-royal);
	color: var(--color-white);
}

.euro-hair-hero__ba-meta {
	padding: 24px 28px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid var(--color-line);
}

.euro-hair-hero__ba-meta-block {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.euro-hair-hero__ba-meta-block--right {
	text-align: right;
}

.euro-hair-hero__ba-meta-label {
	font-family: var(--font-sans);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--color-muted);
}

.euro-hair-hero__ba-meta-value {
	font-family: var(--font-sans);
	font-size: 14px;
	font-weight: 600;
	color: var(--color-navy);
}

/* Floating badges */
.euro-hair-hero__float {
	position: absolute;
	background: var(--color-white);
	border-radius: var(--r-md);
	padding: 18px 22px;
	box-shadow: var(--shadow-md);
	display: flex;
	align-items: center;
	gap: 14px;
	border: 1px solid var(--color-line);
	z-index: 5;
}

.euro-hair-hero__float--1 { top: -26px; left: -30px; }
.euro-hair-hero__float--2 { bottom: 30px; right: -30px; }

.euro-hair-hero__float-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(0, 87, 184, .1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-royal);
	flex-shrink: 0;
}

.euro-hair-hero__float-icon svg { width: 18px; height: 18px; }

.euro-hair-hero__float-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.euro-hair-hero__float-title {
	font-family: var(--font-sans);
	font-size: 13px;
	font-weight: 700;
	color: var(--color-navy);
	line-height: 1.2;
}

.euro-hair-hero__float-sub {
	font-family: var(--font-sans);
	font-size: 11px;
	color: var(--color-muted);
	line-height: 1.2;
}

@media (max-width: 1080px) {
	.euro-hair-hero__grid {
		grid-template-columns: 1fr;
		gap: 60px;
	}
	.euro-hair-hero__float { display: none; }
}

@media (max-width: 768px) {
	.euro-hair-hero { padding: 120px 0 70px; }
	.euro-hair-hero__heading-accent::after { bottom: 4px; height: 6px; }
	.euro-hair-hero__meta { gap: 24px; }
	.euro-hair-hero__meta-num { font-size: 24px; }
}
