/**
 * WOW – frontend styles.
 *
 * @since   1.0.0
 * @package WAWOW
 */

.wawow-button {
	position: fixed;
	bottom: 24px;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	cursor: pointer;
}

.wawow-button:hover {
	transform: scale(1.08);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.wawow-button:focus-visible {
	outline: 3px solid #000;
	outline-offset: 3px;
}

.wawow-position-right {
	right: 24px;
	left: auto;
}

.wawow-position-left {
	left: 24px;
	right: auto;
}

.wawow-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.wawow-tooltip {
	position: absolute;
	bottom: 68px;
	background: #333;
	color: #fff;
	padding: 6px 12px;
	border-radius: 6px;
	font-size: 13px;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
}

.wawow-button:hover .wawow-tooltip {
	opacity: 1;
}

@media (max-width: 480px) {
	.wawow-button {
		width: 48px;
		height: 48px;
		bottom: 16px;
	}

	.wawow-position-right {
		right: 16px;
	}

	.wawow-position-left {
		left: 16px;
	}

	.wawow-tooltip {
		display: none;
	}
}
