.c3a-search {
	position: relative;
	width: 100%;
	max-width: 640px;
	margin: 0 auto;
}

.c3a-search-form {
	display: flex;
	align-items: center;
	gap: 12px;
	background: var(--wc-primary, #720eec);
	border-radius: 999px;
	padding: 14px 22px;
}

.c3a-search-icon {
	display: flex;
	color: #fff;
	flex-shrink: 0;
}

.c3a-search-input {
	flex: 1;
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 16px;
	outline: none;
}

.c3a-search-input::placeholder {
	color: rgba(255, 255, 255, 0.75);
}

.c3a-search-clear {
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	padding: 0 4px;
}

.c3a-search-spinner {
	width: 16px;
	height: 16px;
	border: 2px solid rgba(255, 255, 255, 0.4);
	border-top-color: #fff;
	border-radius: 50%;
	flex-shrink: 0;
	animation: c3a-search-spin 0.7s linear infinite;
}

@keyframes c3a-search-spin {
	to {
		transform: rotate(360deg);
	}
}

.c3a-search-results {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	right: 0;
	max-height: 60vh;
	overflow-x: hidden;
	overflow-y: auto;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(0, 0, 0, 0.08);
	text-align: left;
	z-index: 10;
}

.c3a-search-empty {
	padding: 20px;
	margin: 0;
	color: #767676;
}

.c3a-search-shortcuts {
	list-style: none;
	margin: 0;
	padding: 8px 0;
	border-bottom: 1px solid #eee;
}

.c3a-search-shortcuts a {
	display: block;
	padding: 10px 20px;
	font-weight: 600;
	color: var(--wc-primary, #720eec);
	text-decoration: none;
}

.c3a-search-shortcuts a:hover {
	background: #f7f4fd;
}

.c3a-search-items {
	list-style: none;
	margin: 0;
	padding: 8px 0;
}

.c3a-search-item a {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 10px 20px;
	color: inherit;
	text-decoration: none;
}

.c3a-search-item a:hover {
	background: #f7f4fd;
}

.c3a-search-item-thumb {
	width: 48px;
	height: 48px;
	border-radius: 8px;
	overflow: hidden;
	background: #f0f0f0;
	flex-shrink: 0;
}

.c3a-search-item-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.c3a-search-item-body {
	display: flex;
	flex-direction: column;
	min-width: 0;
	flex: 1;
}

.c3a-search-item-type {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #9b51e0;
	font-weight: 700;
}

.c3a-search-item--offre .c3a-search-item-type {
	color: #720eec;
}

.c3a-search-item-title {
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.c3a-search-item-subtitle {
	font-size: 13px;
	color: #767676;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.c3a-search-item-price {
	flex-shrink: 0;
	max-width: 130px;
	line-height: 1.35;
	text-align: right;
	white-space: normal;
}

.c3a-price-old {
	display: block;
	font-size: 12px;
	font-weight: 400;
	color: #9a9a9a;
	text-decoration: line-through;
	white-space: nowrap;
}

.c3a-price-now {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: #1a1a1a;
	white-space: nowrap;
}

@media (max-width: 480px) {
	.c3a-search-form {
		padding: 12px 16px;
	}

	.c3a-search-item-subtitle {
		display: none;
	}
}
