/**
 * Breath ring + label — inherits site typography for a consistent look.
 */

.richet-breath {
	position: relative;
	display: inline-block;
	font-family: inherit;
	line-height: 1.2;
	color: inherit;
}

.richet-breath__link,
.richet-breath__shell {
	position: relative;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: inherit;
	min-width: 4.5em;
	min-height: 4.5em;
	padding: 0.25em;
	box-sizing: border-box;
}

.richet-breath__link {
	text-decoration: none;
}

.richet-breath__link:hover,
.richet-breath__link:focus {
	text-decoration: none;
	color: inherit;
}

/* Ring sits behind the title; scales via transform in JS. */
.richet-breath__ring-host {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	z-index: 0;
}

.richet-breath__ring {
	width: 85%;
	height: 85%;
	max-width: 4.5rem;
	max-height: 4.5rem;
	box-sizing: border-box;
	border: 2px solid var(--psyrup-amber);
	background-color: rgba(200, 135, 58, 0.08);
	border-radius: 50%;
	opacity: 0.85;
	transform: scale(0.25);
	transform-origin: center center;
	will-change: transform;
}

.richet-breath__label {
	position: relative;
	z-index: 1;
	font-family: inherit;
	font-weight: 600;
	font-size: clamp(0.95rem, 2vw, 1.25rem);
	text-align: center;
	pointer-events: none;
}

.richet-breath__link .richet-breath__label {
	pointer-events: none;
}

/* Header: align with Storefront branding row. */
.site-branding .richet-breath-logo-title {
	margin: 0;
}

.site-branding .richet-breath {
	vertical-align: middle;
}

.richet-breath--reduced-motion .richet-breath__ring {
	opacity: 0.6;
}
