.omi-controls-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	padding: 10px 12px;
	margin-top: 10px;
	background: #f5f5f5;
	border-radius: 6px;
	direction: rtl;
}

.omi-checkbox-wrap {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	cursor: pointer;
	white-space: nowrap;
}

.omi-checkbox {
	width: 16px;
	height: 16px;
	cursor: pointer;
	margin: 0;
}

.omi-qty-group {
	display: flex;
	align-items: center;
	gap: 10px;
}

.omi-qty-btn {
	width: 30px;
	height: 30px;
	border: 1px solid #ccc;
	background: #ffffff;
	border-radius: 6px;
	font-size: 16px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.omi-qty-btn:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

.omi-qty-value {
	min-width: 22px;
	text-align: center;
	font-weight: 600;
	font-size: 14px;
}

.omi-item-subtotal {
	font-size: 13px;
	font-weight: 600;
	color: #128c7e;
}

.omi-floating-bar {
	position: fixed;
	bottom: -100px;
	left: 0;
	right: 0;
	background: #25d366;
	color: #ffffff;
	padding: 14px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	transition: bottom 0.3s ease;
	z-index: 99999;
	box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.25);
	direction: rtl;
	font-family: inherit;
}

.omi-floating-bar.omi-visible {
	bottom: 0;
}

.omi-count-text {
	font-size: 15px;
	font-weight: 600;
}

.omi-send-btn {
	background: #ffffff;
	color: #128c7e;
	border: none;
	padding: 10px 18px;
	border-radius: 6px;
	font-weight: bold;
	font-size: 14px;
	cursor: pointer;
	white-space: nowrap;
}

.omi-send-btn:hover {
	background: #f0f0f0;
}

@media (max-width: 600px) {
	.omi-floating-bar {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
	}
}
