.click-btn {
	display: flex;
	padding: 0 20px; /* horizontal spacing for text */
	height: 55px;
	justify-content: center;
	align-items: center;
	margin: 0.5rem;
	line-height: 55px;
	border: 2px solid;
	border-radius: 5px;
	text-align: center;
	font-size: 17px;
	color: #000;
	text-decoration: none;
	transition: all 0.35s;
	box-sizing: border-box;
	width: auto; /* ✅ important: allow button to grow with content */
	white-space: nowrap; /* optional: prevent text wrapping */
}


.buttons-wrapper {
	display: flex;
	flex-wrap: wrap;
}

.btn-style900 {
	position: relative;
	border-color: #d40511;
	color: #d40511;
	transition-delay: 0.3s;
	overflow: hidden;
	background-color: transparent;
}

.btn-style900:hover {
	transform: translateY(-0.3em);
	border-color: #d40511;
	color: rgba(221, 99, 149, 0);
	transition-delay: 0s;
}

.btn-style900:hover::before {
	opacity: 1;
	transform: translateX(0);
	transition-delay: 0.15s;
}

.btn-style900::before {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	content: attr(data-hover);
	color: #d40511;
	text-align: center;
	transform: translateX(-60%);
	transition: all 0.4s;
	z-index: 1;
}