/* WP PWA Master - Frontend Styles */
.wpm-pwa-install-btn {
	position: fixed;
	z-index: 999999;
	color: #fff;
	border: none;
	border-radius: 30px;
	padding: 12px 22px;
	font-size: 14px;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba( 0, 0, 0, 0.25 );
	align-items: center;
	gap: 8px;
	font-family: inherit;
	transition: transform 0.15s ease, opacity 0.15s ease;
}

.wpm-pwa-install-btn:hover {
	transform: translateY( -2px );
	opacity: 0.92;
}

.wpm-pwa-pos-bottom-right {
	bottom: 20px;
	right: 20px;
}

.wpm-pwa-pos-bottom-left {
	bottom: 20px;
	left: 20px;
}

.wpm-pwa-pos-bottom-center {
	bottom: 20px;
	left: 50%;
	transform: translateX( -50% );
}

@media ( max-width: 480px ) {
	.wpm-pwa-install-btn {
		font-size: 13px;
		padding: 10px 18px;
	}
}

.wpm-pwa-ios-modal {
	position: fixed;
	inset: 0;
	background: rgba( 0, 0, 0, 0.5 );
	z-index: 1000000;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.wpm-pwa-ios-modal-box {
	background: #fff;
	border-radius: 16px 16px 0 0;
	padding: 24px 20px;
	max-width: 480px;
	width: 100%;
	box-sizing: border-box;
	text-align: center;
	font-size: 15px;
	line-height: 1.7;
}

.wpm-pwa-ios-modal-close {
	margin-top: 14px;
	padding: 10px 24px;
	border: none;
	border-radius: 8px;
	background: #1e1e1e;
	color: #fff;
	font-size: 14px;
	cursor: pointer;
}
