.stepper {
	margin: 0;
	margin-bottom: 50px;
	width: 85%;
	max-width: none;
}
.container {
	margin-top: 100px;
	padding: 20px;
	min-height: 70vh;
}
.container h3 {
	font-size: 2rem;
	text-align: center;
	margin-bottom: 30px;
}
.container h3 img {
	width: 40px;
} /* search */
.orderSearch {
	display: flex;
	justify-content: center;
	align-items: center;
}
.orderSearch input {
	background: none;
	font-size: 16px;
	color: var(--text-color);
	height: 40px;
	width: 50vw;
	padding-inline-end: 38px;
	padding-inline-start: 20px;
	position: relative;
	border-radius: 30px;
	border: 1px solid var(--text-color);
}
.orderSearch input::placeholder {
	color: var(--text-color);
	font-size: 14px;
}
.search_wrapper {
	display: flex;
	flex-direction: column;
} /* order card */
#orderDiv {
	margin-top: 50px;
	display: flex;
	justify-content: center;
}
.order-card {
	border-radius: 10px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	margin-bottom: 2rem;
	padding: 1.5rem;
	border: 1px solid lightgray;
	width: 80%;
}
.order-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #eee;
	padding-bottom: 1rem;
	margin-bottom: 1rem;
}
.items-list {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.item-card {
	display: flex;
	gap: 1rem;
	padding: 8px;
	width: 312px;
	border-bottom: 1px solid #ddd;
}
.product-image {
	width: 80px;
	height: 80px;
	object-fit: contain;
	border-radius: 4px;
}
.item-info {
	flex: 1;
}
.item-info h4 {
	margin: 0 0 0.5rem 0;
	color: var(--text-color);
}
.variant {
	color: #666;
	font-size: 0.9rem;
	margin-bottom: 0.5rem;
}
.order-summary {
	margin: 2rem 0;
	padding: 1rem 0;
	border-top: 1px solid #eee;
	display: flex;
	flex-direction: column;
	border-bottom: 1px solid #eee;
}
.summary-item {
	display: flex;
	justify-content: space-between;
	margin-bottom: 0.5rem;
	padding: 0.3rem 0;
}
.summary-item span:first-child {
	color: var(--text-color);
}
.summary-item span:last-child {
	font-weight: bold;
	color: var(--text-color);
}
.no-order {
	text-align: center;
	padding: 2rem;
	color: #666;
}
.order_message {
	display: flex;
	justify-content: space-between;
}
.order_message p {
	line-height: 30px;
	max-width: 40%;
	text-align: end;
	font-size: 20px;
}
@media (max-width: 1280px) {
	.orderSearch input {
		width: 85vw;
	}
	.order-card {
		width: 100%;
	}
	.stepper {
		width: 100%;
	}
	.order_message {
		flex-direction: column;
		align-items: flex-start;
	}
	.order_message span {
		text-align: left;
	}
}
