/**
 * Euro Hair Transplant — Global Styles
 * All branding tokens defined here as CSS custom properties.
 * Block-specific CSS lives in /acf-blocks/[block]/style.css and is loaded per block.
 */

:root {
	/* Brand colors */
	--color-royal:           #0057B8;
	--color-royal-bright:    #0066D9;
	--color-royal-deep:      #003F87;
	--color-navy:            #002147;
	--color-navy-soft:       #0a2a55;
	--color-white:           #FFFFFF;
	--color-cream:           #F6F8FB;
	--color-silver:          #C0C0C0;
	--color-silver-soft:     #E6E9EE;
	--color-ink:             #0E1B30;
	--color-muted:           #5C6677;
	--color-body:            #475569;
	--color-accent-blue:     #7ea7d8;
	--color-rating-gold:     #d4a942;
	--color-status-green:    #22c55e;
	--color-line:            rgba(0, 33, 71, 0.08);
	--color-line-strong:     rgba(0, 33, 71, 0.16);

	/* Typography */
	--font-sans:             'Montserrat', system-ui, sans-serif;
	--font-body:             'Inter', system-ui, sans-serif;
	--font-size-base:        16px;
	--line-height-base:      1.65;

	/* Spacing */
	--spacing-xs:            8px;
	--spacing-sm:            14px;
	--spacing-md:            24px;
	--spacing-lg:            36px;
	--spacing-xl:            60px;
	--spacing-2xl:           80px;
	--spacing-section:       120px;

	/* Layout */
	--container:             1320px;
	--container-padding:     36px;

	/* Borders */
	--r-sm:                  6px;
	--r-md:                  10px;
	--r-lg:                  18px;
	--r-pill:                999px;

	/* Shadows */
	--shadow-sm:             0 2px 6px rgba(0, 33, 71, 0.06);
	--shadow-md:             0 16px 40px -16px rgba(0, 33, 71, 0.20);
	--shadow-lg:             0 30px 80px -20px rgba(0, 33, 71, 0.28);

	/* Motion */
	--ease:                  cubic-bezier(.2, .8, .2, 1);
}

/* ============ RESET ============ */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	font-family: var(--font-body);
	font-size: var(--font-size-base);
	line-height: var(--line-height-base);
	color: var(--color-ink);
	background: var(--color-white);
	overflow-x: hidden;
}

img {
	max-width: 100%;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

button {
	font: inherit;
	cursor: pointer;
	border: none;
	background: none;
	color: inherit;
}

ul {
	list-style: none;
}

/* ============ LAYOUT ============ */
.euro-hair-container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}

/* ============ TYPOGRAPHY ============ */
.euro-hair-eyebrow {
	font-family: var(--font-sans);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .24em;
	text-transform: uppercase;
	color: var(--color-royal);
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.euro-hair-eyebrow__dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--color-royal);
	display: inline-block;
}

.euro-hair-eyebrow--light { color: var(--color-accent-blue); }
.euro-hair-eyebrow--light .euro-hair-eyebrow__dot { background: var(--color-accent-blue); }
.euro-hair-eyebrow--center { justify-content: center; }

h1, h2, h3, h4 {
	font-family: var(--font-sans);
	font-weight: 700;
	color: var(--color-navy);
	letter-spacing: -.02em;
	line-height: 1.1;
}

h1 { font-size: clamp(40px, 5.6vw, 72px); }
h2 { font-size: clamp(32px, 4vw, 52px); }
h3 { font-size: clamp(20px, 2vw, 26px); font-weight: 600; }
h4 { font-size: 16px; font-weight: 600; letter-spacing: -.005em; }

p {
	font-size: 16px;
	line-height: 1.7;
	color: var(--color-body);
}

.euro-hair-lead {
	font-size: 18px;
	line-height: 1.6;
	color: var(--color-body);
	max-width: 60ch;
}

.euro-hair-section-head {
	max-width: 720px;
	margin-bottom: 72px;
}

.euro-hair-section-head--center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.euro-hair-section-head .euro-hair-eyebrow { margin-bottom: 20px; }
.euro-hair-section-head h2 { margin-bottom: 20px; }

/* ============ BUTTONS ============ */
.euro-hair-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 28px;
	font-family: var(--font-sans);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .04em;
	border-radius: var(--r-pill);
	transition: all .35s var(--ease);
	cursor: pointer;
	border: 1.5px solid transparent;
	line-height: 1;
}

.euro-hair-btn__arrow {
	display: inline-block;
	transition: transform .35s var(--ease);
	font-size: 16px;
	line-height: 1;
}

.euro-hair-btn:hover .euro-hair-btn__arrow { transform: translateX(4px); }

.euro-hair-btn--primary {
	background: var(--color-royal);
	color: var(--color-white);
	border-color: var(--color-royal);
}

.euro-hair-btn--primary:hover {
	background: var(--color-navy);
	border-color: var(--color-navy);
	transform: translateY(-2px);
	box-shadow: 0 16px 40px -10px rgba(0, 87, 184, .45);
}

.euro-hair-btn--outline {
	background: transparent;
	color: var(--color-navy);
	border-color: var(--color-line-strong);
}

.euro-hair-btn--outline:hover {
	background: var(--color-navy);
	color: var(--color-white);
	border-color: var(--color-navy);
}

.euro-hair-btn--ghost {
	background: transparent;
	color: var(--color-white);
	border-color: rgba(255, 255, 255, .4);
}

.euro-hair-btn--ghost:hover {
	background: var(--color-white);
	color: var(--color-navy);
	border-color: var(--color-white);
}

/* ============ REVEAL ANIMATIONS ============ */
.euro-hair-reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.euro-hair-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.euro-hair-reveal--d1 { transition-delay: .1s; }
.euro-hair-reveal--d2 { transition-delay: .2s; }
.euro-hair-reveal--d3 { transition-delay: .3s; }
.euro-hair-reveal--d4 { transition-delay: .4s; }

/* Inside the block editor — skip reveal animation so editors see content immediately. */
.is-root-container .euro-hair-reveal,
.editor-styles-wrapper .euro-hair-reveal {
	opacity: 1;
	transform: none;
}

/* ============ SITE HEADER ============ */
.euro-hair-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: rgba(255, 255, 255, .85);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid transparent;
	transition: all .4s var(--ease);
}

.euro-hair-header.is-scrolled {
	background: rgba(255, 255, 255, .96);
	border-bottom-color: var(--color-line);
	box-shadow: 0 1px 0 var(--color-line);
}

.euro-hair-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px var(--container-padding);
	gap: 30px;
}

.euro-hair-header__logo {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
}

.euro-hair-header__logo img { max-height: 60px; width: auto; }

.euro-hair-header__logo-name {
	font-family: var(--font-sans);
	font-size: 22px;
	font-weight: 800;
	letter-spacing: .02em;
	color: var(--color-royal);
}

.euro-hair-header__menu {
	display: flex;
	align-items: center;
	gap: 34px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.euro-hair-nav__link {
	font-family: var(--font-sans);
	font-size: 13px;
	font-weight: 500;
	color: var(--color-navy);
	position: relative;
	padding: 8px 0;
	transition: color .3s var(--ease);
	display: inline-block;
}

.euro-hair-nav__link:hover,
.euro-hair-nav__link--active { color: var(--color-royal); }

.euro-hair-header__actions {
	display: flex;
	align-items: center;
	gap: 14px;
}

.euro-hair-header__phone {
	font-family: var(--font-sans);
	font-size: 13px;
	font-weight: 500;
	color: var(--color-navy);
	display: none;
	align-items: center;
	gap: 8px;
}

.euro-hair-header__cta {
	padding: 13px 22px;
	font-size: 12px;
	background: var(--color-royal);
	color: var(--color-white);
	border-radius: var(--r-pill);
	font-family: var(--font-sans);
	font-weight: 600;
	letter-spacing: .04em;
	transition: all .35s var(--ease);
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 1.5px solid var(--color-royal);
}

.euro-hair-header__cta:hover {
	background: var(--color-navy);
	border-color: var(--color-navy);
	transform: translateY(-1px);
}

.euro-hair-header__toggle {
	display: none;
	width: 32px;
	height: 32px;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	gap: 6px;
	cursor: pointer;
}

.euro-hair-header__toggle span {
	display: block;
	height: 2px;
	background: var(--color-navy);
	transition: all .35s var(--ease);
	border-radius: 2px;
}

.euro-hair-header__toggle span:nth-child(1) { width: 22px; }
.euro-hair-header__toggle span:nth-child(2) { width: 16px; }

.euro-hair-header__toggle.is-open span:nth-child(1) { transform: translateY(4px) rotate(45deg); width: 22px; }
.euro-hair-header__toggle.is-open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); width: 22px; }

@media (min-width: 1100px) {
	.euro-hair-header__phone { display: inline-flex; }
}

.euro-hair-header__mobile {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	max-width: 380px;
	height: 100vh;
	background: var(--color-white);
	padding: 110px var(--container-padding) 40px;
	transform: translateX(100%);
	transition: transform .5s var(--ease);
	z-index: 99;
	display: flex;
	flex-direction: column;
	gap: 6px;
	box-shadow: -30px 0 80px -20px rgba(0, 33, 71, .2);
}

.euro-hair-header__mobile.is-open { transform: translateX(0); }

.euro-hair-header__mobile-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.euro-hair-header__mobile-menu a {
	font-family: var(--font-sans);
	font-size: 20px;
	font-weight: 600;
	color: var(--color-navy);
	padding: 18px 0;
	border-bottom: 1px solid var(--color-line);
	display: block;
}

.euro-hair-header__mobile-cta {
	margin-top: 24px;
	align-self: flex-start;
	padding: 16px 26px;
	font-size: 13px;
}

@media (max-width: 768px) {
	.euro-hair-header__menu,
	.euro-hair-header__cta,
	.euro-hair-header__phone { display: none; }
	.euro-hair-header__toggle { display: flex; }
}

/* ============ SITE FOOTER ============ */
.euro-hair-footer {
	background: #020e22;
	color: rgba(255, 255, 255, .7);
	padding: 80px 0 32px;
	font-size: 14px;
}

.euro-hair-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 54px;
	margin-bottom: 60px;
	padding-bottom: 48px;
	border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.euro-hair-footer__brand .euro-hair-footer__logo { max-height: 56px; margin-bottom: 22px; }
.euro-hair-footer__brand-name {
	font-family: var(--font-sans);
	font-size: 22px;
	font-weight: 800;
	color: var(--color-white);
	display: block;
	margin-bottom: 22px;
}

.euro-hair-footer__about {
	color: rgba(255, 255, 255, .6);
	font-size: 14px;
	line-height: 1.7;
	max-width: 34ch;
}

.euro-hair-footer h4 {
	font-family: var(--font-sans);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--color-white);
	margin-bottom: 22px;
}

.euro-hair-footer__links {
	display: flex;
	flex-direction: column;
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.euro-hair-footer__links a {
	color: rgba(255, 255, 255, .6);
	font-size: 14px;
	transition: color .3s var(--ease);
}

.euro-hair-footer__links a:hover { color: var(--color-white); }

.euro-hair-footer__contact {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.euro-hair-footer__contact-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	color: rgba(255, 255, 255, .6);
	font-size: 13.5px;
	line-height: 1.55;
}

.euro-hair-footer__contact-item a { color: inherit; }
.euro-hair-footer__contact-item a:hover { color: var(--color-white); }

.euro-hair-footer__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
}

.euro-hair-footer__bottom p {
	font-size: 12px;
	color: rgba(255, 255, 255, .4);
}

.euro-hair-footer__social {
	display: flex;
	gap: 10px;
}

.euro-hair-footer__social a {
	width: 36px;
	height: 36px;
	border: 1px solid rgba(255, 255, 255, .15);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, .6);
	font-size: 11px;
	letter-spacing: .04em;
	font-family: var(--font-sans);
	transition: all .3s var(--ease);
}

.euro-hair-footer__social a:hover {
	background: var(--color-royal);
	border-color: var(--color-royal);
	color: var(--color-white);
}

@media (max-width: 1080px) {
	.euro-hair-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ============ ACCESSIBILITY ============ */
.screen-reader-text {
	position: absolute;
	left: -10000px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	left: 0;
	top: 0;
	background: var(--color-royal);
	color: var(--color-white);
	padding: 12px 16px;
	z-index: 200;
	width: auto;
	height: auto;
}

/* ============ MOBILE ============ */
@media (max-width: 768px) {
	.euro-hair-container { padding: 0 22px; }
	h1 { font-size: 38px; }
	h2 { font-size: 30px; }
	.euro-hair-header__inner { padding: 14px 22px; }
	.euro-hair-footer__grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; padding-bottom: 30px; }
	.euro-hair-footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}
.codedropz-upload-wrapper span.has-error-msg{
	font-family: var(--font-sans) !important;
    font-size: 12px !important;
    color: #dc2626 !important;
    margin-top: 6px !important;
}
.codedropz-upload-inner{
	margin-top: 10px;
}