/* Smilerite Cart Recovery — toast styles */

#scr-toast {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 99999;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(0,0,0,.12);
	padding: 20px 24px;
	max-width: 320px;
	width: 90vw;
	opacity: 0;
	transform: translateY(16px);
	transition: opacity .3s ease, transform .3s ease;
	font-family: inherit;
}

#scr-toast.scr-visible {
	opacity: 1;
	transform: translateY(0);
}

#scr-toast p {
	margin: 0 0 12px;
	font-size: 14px;
	color: #111827;
	font-weight: 500;
}

#scr-toast .scr-close {
	position: absolute;
	top: 10px;
	right: 12px;
	background: none;
	border: none;
	font-size: 18px;
	color: #6b7280;
	cursor: pointer;
	padding: 0;
	line-height: 1;
}

#scr-toast .scr-close:hover {
	color: #111827;
}

#scr-toast-form {
	display: flex;
	gap: 8px;
}

#scr-toast-form input[type="email"] {
	flex: 1;
	padding: 8px 10px;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	font-size: 13px;
	outline: none;
}

#scr-toast-form input[type="email"]:focus {
	border-color: #1a1a2e;
}

#scr-toast-form button[type="submit"] {
	padding: 8px 14px;
	background: #1a1a2e;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-size: 13px;
	cursor: pointer;
	white-space: nowrap;
}

#scr-toast-form button[type="submit"]:hover {
	background: #2d2d4e;
}

#scr-toast .scr-small {
	font-size: 11px;
	color: #9ca3af;
	margin: 8px 0 0;
}

@media (max-width: 480px) {
	#scr-toast {
		bottom: 0;
		right: 0;
		left: 0;
		max-width: 100%;
		width: 100%;
		border-radius: 12px 12px 0 0;
	}
}
