/* Studio Laser WhatsApp Chooser — modal */

.slwa-overlay {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(26, 20, 17, 0.72);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.18s ease;
	overflow-y: auto;
}

.slwa-overlay.slwa-open {
	opacity: 1;
	pointer-events: auto;
}

.slwa-dialog {
	background: #ffffff;
	border-radius: 18px;
	max-width: 480px;
	width: 100%;
	padding: 36px 32px 32px;
	position: relative;
	box-shadow: 0 24px 60px rgba(56, 42, 64, 0.25);
	transform: translateY(12px);
	transition: transform 0.22s ease;
	font-family: inherit;
}

.slwa-overlay.slwa-open .slwa-dialog {
	transform: translateY(0);
}

.slwa-close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: transparent;
	border: 0;
	color: #5a4a60;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	font-family: inherit;
	transition: background 0.15s ease, color 0.15s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.slwa-close:hover,
.slwa-close:focus-visible {
	background: #FBFAF3;
	color: #382a40;
}

.slwa-title {
	font-family: inherit;
	font-weight: 500;
	font-size: 20px;
	line-height: 1.25;
	color: #382a40;
	margin: 0 0 8px;
}

.slwa-subtitle {
	font-size: 14px;
	color: #848688;
	line-height: 1.5;
	margin: 0 0 24px;
}

.slwa-units {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.slwa-unit {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 18px;
	background: #ffffff;
	border: 1px solid #e5dccd;
	border-radius: 12px;
	text-decoration: none !important;
	color: #382a40;
	transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
	font-family: inherit;
}

.slwa-unit:hover,
.slwa-unit:focus-visible {
	border-color: #128c4e;
	background: #f6fbf7;
	transform: translateY(-1px);
}

.slwa-unit-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #128c4e;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
}

.slwa-unit-icon svg {
	width: 20px;
	height: 20px;
}

.slwa-unit-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.slwa-unit-name {
	font-weight: 600;
	font-size: 15px;
	color: #382a40;
}

.slwa-unit-meta {
	font-size: 12.5px;
	color: #848688;
	line-height: 1.35;
}

.slwa-unit-arrow {
	color: #848688;
	flex: none;
	transition: color 0.15s ease, transform 0.15s ease;
}

.slwa-unit:hover .slwa-unit-arrow,
.slwa-unit:focus-visible .slwa-unit-arrow {
	color: #128c4e;
	transform: translateX(2px);
}

.slwa-foot {
	margin-top: 18px;
	font-size: 12px;
	color: #848688;
	text-align: center;
	line-height: 1.4;
}

@media (max-width: 480px) {
	.slwa-dialog {
		padding: 30px 22px 24px;
	}
	.slwa-title {
		font-size: 18px;
	}
}
