/* ---------- Out-of-stock Notice ---------- */
.lifeglider-oos-notice {
	background: #fff3f3;
	border: 1px solid #e79e9e;
	color: #b00020;
	padding: 20px;
	border-radius: 8px;
	margin: 20px 0;
	max-width: 700px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, .05);
	font-size: 16px;
	line-height: 1.6;
}
.lifeglider-oos-notice strong {
	display: block;
	margin-bottom: 8px;
	font-size: 18px;
	color: #900;
}
.lifeglider-oos-notice button {
	background: #ea5626;
	color: #fff;
	border: 0;
	border-radius: 6px;
	padding: 10px 24px;
	cursor: pointer;
}
.lifeglider-oos-notice button:hover {
	background: #d24c21;
}

/* ---------- Modal ---------- */
.lg-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex !important;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	transition: opacity 0.25s ease;
	opacity: 0;
	pointer-events: none;
	padding: 20px;
	box-sizing: border-box;
}
.lg-modal[aria-hidden="false"] {
	opacity: 1;
	pointer-events: auto;
}
.lg-modal__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .6);
}
.lg-modal__content {
	position: relative;
	background: #fff;
	padding: 30px;
	border-radius: 10px;
	max-width: 420px;
	width: 100%;
	box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
	animation: lg-pop 0.3s ease;
	box-sizing: border-box;
	z-index: 2;
}
.lg-modal__close {
	position: absolute;
	top: 10px;
	right: 12px;
	font-size: 24px;
	background: none;
	border: 0;
	cursor: pointer;
	color: #666;
}
@keyframes lg-pop {
	from {
		transform: scale(.85);
		opacity: 0;
	}
	to {
		transform: scale(1);
		opacity: 1;
	}
}

/* ---------- Waitlist Form ---------- */
.lg-waitlist-form input {
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
	margin-bottom: 12px;
	box-sizing: border-box;
}
.lg-waitlist-form .lg-submit {
	background: #ea5626;
	color: #fff;
	border: 0;
	border-radius: 5px;
	padding: 10px 20px;
	cursor: pointer;
}
.lg-waitlist-form .lg-submit:hover {
	background: #d24c21;
}
.lg-waitlist-form label span
{
	color: red;
    font-weight: bold;
    font-size: 19px;
}
.lg-notice {
  display: none;
  margin-top: 15px;
  padding: 12px 18px;
  border-left: 5px solid #2ecc71;
  background-color: #eafaf1;
  color: #2d7a4a;
  border-radius: 6px;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.lg-msg.error {
  border-left-color: #e74c3c;
  background-color: #fdecea;
  color: #a94442;
}
/* ---------- Responsive Modal ---------- */
@media (max-width: 480px) {
	.lg-modal__content {
		padding: 20px;
		max-width: 90%;
	}
}