.cute-btn-wrapper-0a24c01a {
	position: relative;
	display: inline-block;
	cursor: pointer;
	border-radius: 50px; /* fallback */
	--cute-hover-lift: -12px;
	--cute-hover-tilt: -2deg;
}

/* Base Shadow/Back layer */
.cute-btn-back-0a24c01a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: inherit;
	z-index: 1;
	background-color: #14343d; /* Seaside luxury shadow deep teal */
	box-shadow: inset 0 -3px 5px rgba(0,0,0,0.2);
}

/* Front button layer */
.cute-btn-front-0a24c01a {
	position: relative;
	z-index: 2;
	display: inline-block;
	width: 100%;
	height: 100%;
	border-radius: inherit;
	background-color: #1f4e5b; /* Calming ocean teal */
	transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	text-decoration: none;
	font-weight: 700;
	transform-origin: bottom left; /* Default LTR */
	box-shadow: inset 0 -2px 0 rgba(0,0,0,0.1), inset 0 2px 0 rgba(255,255,255,0.2);
}

.cute-btn-wrapper-0a24c01a:hover .cute-btn-front-0a24c01a {
	transform: translateY(var(--cute-hover-lift)) rotate(var(--cute-hover-tilt));
}

.cute-btn-front-0a24c01a:hover {
	color: #ffffff;
}

.cute-btn-text-0a24c01a {
	position: relative;
	z-index: 3;
}

/* Eyes Container - Default Right */
.cute-btn-eyes-0a24c01a {
	position: absolute;
	right: 20px;
	bottom: 5px;
	display: flex;
	gap: 6px;
	opacity: 0;
	transition: opacity 0.2s ease;
	z-index: 1;
}

/* RTL Modifiers - Eyes Left */
.cute-btn-eyes-left-0a24c01a .cute-btn-eyes-0a24c01a {
	right: auto;
	left: 20px;
}

.cute-btn-eyes-left-0a24c01a .cute-btn-front-0a24c01a {
	transform-origin: bottom right; /* Anchor right side for RTL */
}

.cute-btn-wrapper-0a24c01a:hover .cute-btn-eyes-0a24c01a {
	opacity: 1;
}

/* Individual Eye */
.cute-btn-eye-0a24c01a {
	width: 12px;
	height: 14px;
	background: #fff;
	border-radius: 50%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

/* Blinking animation */
.cute-btn-eye-0a24c01a.blink {
	animation: eyeBlink-0a24c01a 0.2s ease-in-out;
}

@keyframes eyeBlink-0a24c01a {
	0%, 100% { transform: scaleY(1); }
	50% { transform: scaleY(0.1); }
}

/* Pupil */
.cute-btn-pupil-0a24c01a {
	width: 5px;
	height: 5px;
	background: #000;
	border-radius: 50%;
	position: absolute;
	transition: transform 0.1s ease-out;
}
