.wpp-float-button {
	position: fixed;
	right: 20px;
	bottom: 20px;
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #25d366;
	color: #fff;
	border: none;
	border-radius: 50%;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
	cursor: pointer;
	z-index: 9999;
	text-decoration: none;
	transition: transform 0.15s ease;
}

.wpp-float-button:hover,
.wpp-float-button:focus {
	transform: scale(1.06);
	color: #fff;
}

.wpp-modal {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	padding: 20px;
}

.wpp-modal[hidden] {
	display: none;
}

.wpp-modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
}

.wpp-modal-content {
	position: relative;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
	padding: 24px;
	max-width: 340px;
	width: 100%;
	max-height: 70vh;
	overflow-y: auto;
	margin-bottom: 84px;
}

.wpp-modal-close {
	position: absolute;
	top: 8px;
	right: 12px;
	background: none;
	border: none;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	color: #555;
	box-shadow: none;
}

.wpp-modal-content h2 {
	margin: 0 0 16px;
	font-size: 18px;
	padding-right: 24px;
}

.wpp-lojas-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.wpp-lojas-list li + li {
	margin-top: 8px;
}

.wpp-lojas-list a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 14px;
	background: #f4f6f5;
	border-radius: 8px;
	text-decoration: none;
	color: #1f2937;
	font-weight: 500;
	transition: background-color 0.15s ease;
}

.wpp-lojas-list a:hover,
.wpp-lojas-list a:focus {
	background: #e6f8ed;
	color: #128c47;
}

.wpp-lojas-list .wpp-icon {
	flex: 0 0 auto;
	color: #25d366;
}

.wpp-loja-info {
	display: flex;
	min-width: 0;
	gap: 8px;
	align-items: center;
}

.wpp-loja-nome {
	font-weight: 500;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.wpp-loja-numero {
	font-size: 12px;
	font-weight: 400;
	color: #6b7280;
}

@media (max-width: 480px) {
	.wpp-modal-content {
		max-width: none;
	}
}
