
	.search-results {
		border: 1px solid #ddd;
		background: #fff;
		max-height: 300px;
		overflow-y: auto;
		position: absolute;
		width: 100%;
		z-index: 10;
		border-radius: 4px;
		padding: 10px;
		box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
		padding-top: 10px;
		top: 63px;
		left: 0px;
	}

	.result-item {
		display: flex;
		align-items: center;
		padding: 8px;
		cursor: pointer;
		border-bottom: 1px solid #eee;
		justify-content: space-between;
	}

	.result-item:hover {
		background-color: #f9f9f9;
	}

	.result-image {
		width: 50px;
		height: 50px;
		margin-right: 12px;
		border-radius: 4px;
	}

	.result-info h4 {
		margin: 0 0 4px;
		font-size: 16px;
		color: #333;
	}

	.result-info p {
		margin: 0;
		font-size: 14px;
		color: #777;
		font-family: math;
	}

	.order-btn {
		display: inline-block;
		margin-top: 8px;
		padding: 6px 12px;
		color: #fff;
		background-color: #bd3127;
		border: none;
		border-radius: 4px;
		text-align: center;
		text-decoration: none;
		font-size: 14px;
		font-weight: bold;
		transition: background-color 0.3s ease;
	}

	.order-btn:hover {
		background-color: #bd3127;
	}
