.wpsc-chatbot__modal {
	position: fixed;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 1000001;
	pointer-events: none;
}

.wpsc-chatbot__modal--active {
	display: flex;
	pointer-events: auto;
}

.wpsc-chatbot__modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .5);
}

.wpsc-chatbot__modal-dialog {
	position: relative;
	width: calc(100% - 40px);
	max-width: 360px;
	padding: 24px 24px 10px 24px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
	text-align: center;
	z-index: 1;
}

.wpsc-chatbot__modal-cancel {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 32px;
	height: 32px;
	border: 0;
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
	font-size: 18px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wpsc-chatbot__modal-cancel {
	color: #DCDCDC;
}

.wpsc-chatbot__modal-cancel:hover {
	background: #f5f5f5;
	color: #A0A0A0;
	cursor: pointer;
}

.wpsc-chatbot__modal-title {
	font-size: 18px;
	font-weight: 600;
	margin: 20px 0px 5px 0px;
}

.wpsc-chatbot__modal-content {
	font-size: 14px;
	line-height: 1.6;
	color: #666;
	margin-bottom: 24px;
}

.wpsc-chatbot__modal-footer-ask-me-later {
	font-size: 10px;
	line-height: 1.6;
	color: #DCDCDC;
	margin-top: 14px;
	display: block;
	width: 100%;
	text-align: right;
	transform-origin: right center;
	transition: color .2s ease, transform .2s ease;
}

.wpsc-chatbot__modal-footer-ask-me-later:hover {
	color: #A0A0A0;
	transform: scale(1.02);
	cursor: pointer;
}

.wpsc-chatbot__modal-reactions {
	display: flex;
	justify-content: center;
	gap: 20px;
}

.wpsc-chatbot__modal-reaction {
	width: 60px;
	height: 60px;
	border: 1px solid #e5e7eb;
	border-radius: 50%;
	background: #fff;
	cursor: pointer;
	font-size: 28px;
	transition: all .2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wpsc-chatbot__modal-reaction:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
}

.wpsc-chatbot__modal-reaction--positive:hover {
	border-color: #22c55e;
}

.wpsc-chatbot__modal-reaction--negative:hover {
	border-color: #ef4444;
}

.wpsc-chatbot__modal-reaction--negative--selected {
	border-color: #ef4444;
	background: #fee2e2;

}

@media (max-width: 768px) {

	.wpsc-chatbot__modal-dialog {
		width: calc(100% - 30px);
		max-width: 340px;
		padding: 20px;
	}

	.wpsc-chatbot__modal-reaction {
		width: 54px;
		height: 54px;
		font-size: 24px;
	}
}