/* Nuredux WhatsApp Ordering */

.nwo-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 12px 20px;
	border: 0;
	border-radius: 6px;
	background: #25D366;
	color: #fff !important;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none !important;
	cursor: pointer;
	transition: background .15s ease;
}

.nwo-btn:hover,
.nwo-btn:focus {
	background: #1da851;
	color: #fff !important;
}

.nwo-btn--busy {
	opacity: .6;
	pointer-events: none;
}

.nwo-btn--product {
	margin-top: 12px;
	width: 100%;
}

.nwo-btn--cart {
	width: 100%;
	margin-top: 8px;
}

.nwo-icon {
	flex: 0 0 auto;
}

.nwo-cart-block {
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid #eee;
}

.nwo-fields {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin-bottom: 8px;
}

.nwo-fields input {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 14px;
}

@media (max-width: 480px) {
	.nwo-fields { grid-template-columns: 1fr; }
}

.nwo-hint {
	margin: 8px 0 0;
	color: #666;
	font-size: 13px;
	text-align: center;
}

.nwo-offline {
	margin: 8px 0 0;
	padding: 8px 10px;
	border-radius: 5px;
	background: #fff8e5;
	color: #7a5b00;
	font-size: 13px;
}

/* Floating bubble */

.nwo-float {
	position: fixed;
	bottom: 22px;
	z-index: 9998;
	display: inline-flex;
	align-items: center;
	gap: 0;
	padding: 14px;
	border-radius: 999px;
	background: #25D366;
	color: #fff !important;
	box-shadow: 0 6px 20px rgba(0,0,0,.22);
	text-decoration: none !important;
	transition: gap .2s ease, padding .2s ease;
}

.nwo-float--right { right: 22px; }
.nwo-float--left  { left: 22px; }

.nwo-float__label {
	max-width: 0;
	overflow: hidden;
	white-space: nowrap;
	font-size: 14px;
	font-weight: 600;
	transition: max-width .25s ease;
}

.nwo-float:hover .nwo-float__label,
.nwo-float:focus .nwo-float__label {
	max-width: 160px;
}

.nwo-float:hover,
.nwo-float:focus {
	gap: 9px;
	padding: 14px 20px 14px 16px;
	color: #fff !important;
}

@media (max-width: 782px) {
	/* Sit above Unimart's mobile bottom navigation bar. */
	.nwo-float { bottom: 76px; }
	.nwo-float--desktop-only { display: none; }
}

@media (prefers-reduced-motion: reduce) {
	.nwo-float,
	.nwo-float__label { transition: none; }
}
