.morph-btn-wrapper {
	display: block;
	position: relative;
}

.morph-btn {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 16px 70px 16px 32px;
	background-color: #e8e8e8;
	color: #000000;
	border: none;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.morph-btn-text {
	position: relative;
	z-index: 3;
	white-space: nowrap;
	transition: color 0.4s ease 0.1s;
}

.morph-circle {
	width: 44px;
	height: 44px;
	background-color: #000000;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	right: 4px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
	transition: all 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.morph-icon {
	width: 18px;
	height: 18px;
	color: #ffffff;
	position: absolute;
	right: 17px;
	z-index: 3;
	transform: rotate(-45deg);
	transition: transform 0.4s ease;
}

/* Hover - expand circle to cover entire button */
.morph-btn:hover .morph-circle {
	width: calc(100% + 16px) !important;
	height: calc(100% + 16px) !important;
	border-radius: inherit !important;
	right: -8px !important;
}

.morph-btn:hover .morph-btn-text {
	color: #ffffff;
}

.morph-btn:hover .morph-icon {
	transform: rotate(0deg) !important;
}

/* Active state */
.morph-btn:active .morph-circle {
	transform: translateY(-50%) scale(0.98);
}
