.barbu-produits {
	width: 100%;
}

/* Bandeau : onglets + recherche */
.barbu-produits__header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 24px;
}

.barbu-produits__tabs {
	display: flex;
	align-items: center;
	gap: 8px;
	overflow-x: auto;
	scrollbar-width: thin;
}

.barbu-produits__tab {
	flex: 0 0 auto;
	background: transparent;
	border: none;
	color: #ffffff;
	font-size: 1rem;
	padding: 8px 4px;
	cursor: pointer;
	white-space: nowrap;
}

.barbu-produits__tab.is-active {
	color: #c8a464;
	font-weight: 600;
}

.barbu-produits__tab[disabled] {
	opacity: 0.6;
	cursor: default;
}

.barbu-produits__search {
	display: flex;
	align-items: center;
	gap: 8px;
	flex: 0 0 auto;
}

.barbu-produits__search-field {
	position: relative;
	display: flex;
	align-items: center;
}

.barbu-produits__search-input {
	background: transparent;
	border: 1px solid #3a3a3a;
	color: #ffffff;
	padding: 10px 36px 10px 14px;
	min-width: 220px;
	font-size: 0.95rem;
}

.barbu-produits__search-input::placeholder {
	color: #9a9a9a;
}

.barbu-produits__search-input[disabled] {
	opacity: 0.6;
}

.barbu-produits__search-clear {
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY( -50% );
	background: transparent;
	border: none;
	color: #9a9a9a;
	font-size: 1.3rem;
	line-height: 1;
	width: 22px;
	height: 22px;
	padding: 0;
	cursor: pointer;
}

.barbu-produits__search-clear:hover,
.barbu-produits__search-clear:focus {
	color: #ffffff;
}

.barbu-produits__search-clear[disabled] {
	opacity: 0.5;
	cursor: default;
}

.barbu-produits__search-button {
	background: #2b2b2b;
	color: #ffffff;
	border: none;
	padding: 10px 20px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	cursor: pointer;
}

.barbu-produits__search-button:hover,
.barbu-produits__search-button:focus {
	background: #3a3a3a;
}

.barbu-produits__search-button[disabled] {
	opacity: 0.6;
	cursor: default;
}

/* Grille produits */
.barbu-produits__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	padding: 24px;
}

@media ( min-width: 768px ) {
	.barbu-produits__grid {
		grid-template-columns: repeat( 2, 1fr );
	}
}

@media ( min-width: 1024px ) {
	.barbu-produits__grid {
		grid-template-columns: repeat( var( --barbu-produits-columns, 3 ), 1fr );
	}
}

.barbu-produits__card {
	display: flex;
	flex-direction: column;
}

.barbu-produits__card-image {
	display: block;
	aspect-ratio: 1 / 1;
	background: #3a3a3a;
	overflow: hidden;
}

.barbu-produits__card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.barbu-produits__card-title {
	margin: 16px 0 8px;
	font-size: 1.1rem;
	font-weight: 500;
}

.barbu-produits__card-title a {
	color: #ffffff;
	text-decoration: none;
}

.barbu-produits__card-title a:hover,
.barbu-produits__card-title a:focus {
	text-decoration: underline;
}

.barbu-produits__card-price {
	color: #d8d8d8;
	font-size: 1rem;
	margin-bottom: 12px;
}

.barbu-produits__card-price ins {
	text-decoration: none;
	color: #c8a464;
}

.barbu-produits__card-price del {
	color: #8a8a8a;
}

.barbu-produits__card-add-to-cart .button {
	display: inline-block;
	background: #ffffff;
	color: #111111;
	text-decoration: none;
	font-weight: 600;
	padding: 10px 24px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border: none;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}

.barbu-produits__card-add-to-cart .button:hover,
.barbu-produits__card-add-to-cart .button:focus {
	background: #c8a464;
	color: #111111;
}

.barbu-produits__card-add-to-cart .button.loading {
	opacity: 0.6;
}

/* Messages et pagination */
.barbu-produits__empty {
	text-align: center;
	color: #ffffff;
	margin: 0;
	padding: 40px 24px;
}

.barbu-produits__load-more-wrap {
	text-align: center;
	padding: 8px 0 40px;
}

.barbu-produits__load-more {
	background: transparent;
	color: #ffffff;
	border: none;
	padding: 14px 32px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	cursor: pointer;
	font-size: 1rem;
}

.barbu-produits__load-more::after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	margin: 8px auto 0;
	border-right: 2px solid #ffffff;
	border-bottom: 2px solid #ffffff;
	transform: rotate( 45deg );
}

.barbu-produits__load-more:hover,
.barbu-produits__load-more:focus {
	color: #c8a464;
}

.barbu-produits__load-more:hover::after,
.barbu-produits__load-more:focus::after {
	border-color: #c8a464;
}

.barbu-produits__load-more[disabled] {
	opacity: 0.6;
	cursor: default;
}

@media ( max-width: 600px ) {
	.barbu-produits__header {
		flex-direction: column;
		align-items: stretch;
	}

	.barbu-produits__search {
		flex-wrap: wrap;
	}

	.barbu-produits__search-input {
		flex: 1 1 auto;
		min-width: 0;
	}
}
