/* ==========================================================================
   Becomeyoo — Action Button Widget (bew-ab)
   ========================================================================== */

.bew-ab-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

.bew-ab-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 49px;
	border: 2px solid #e30613;
	border-radius: 50px;
	background: transparent;
	text-decoration: none !important;
	box-sizing: border-box;
	transition: background-color 0.3s ease, border-color 0.3s ease;
}

.bew-ab-btn-text {
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: 1px;
	color: #e30613;
	text-align: center;
	transition: color 0.3s ease;
}

.bew-ab-btn-icon {
	position: absolute;
	right: 18px;
	width: 26px;
	height: auto;
	transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hover */
.bew-ab-btn:hover {
	background-color: #e30613;
	border-color: #e30613;
}

.bew-ab-btn:hover .bew-ab-btn-text {
	color: #fff;
}

.bew-ab-btn:hover .bew-ab-btn-icon {
	transform: translateX(4px);
	filter: brightness(0) invert(1);
}

/* ==========================================================================
   Responsive: Mobile (max-width 767px)
   ========================================================================== */
@media (max-width: 767px) {
	.bew-ab-btn {
		height: 44px;
	}

	.bew-ab-btn-text {
		font-size: 1.1rem;
	}

	.bew-ab-btn-icon {
		right: 14px;
		width: 22px;
	}
}
