/**
 * WooCommerce Shop - Styles RollerGrill
 */

/* Import Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ==========================================================================
   Variables
   ========================================================================== */
:root {
	--shop-primary: #F4C430;
	--shop-primary-dark: #d4a410;
	--shop-danger: #d93025;
	--shop-text: #3a3a3a;
	--shop-text-light: #6a6a6a;
	--shop-border: #e0e0e0;
	--shop-bg: #ffffff;
	--shop-bg-alt: #f5f5f5;
}

/* ==========================================================================
   Page Shop
   ========================================================================== */
.rollergrill-shop-page {
	font-family: 'Poppins', sans-serif;
	color: var(--shop-text);
	padding-top: 180px; /* Hauteur du header fixed */
}

/* Page produit unique */
.single-product.woocommerce {
	padding-top: 180px; /* Hauteur du header fixed */
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.shop-hero {
	background: #FAF6F2;
	padding: 3rem 2rem 2.5rem;
	margin-bottom: 2.5rem;
	position: relative;
	background-image: url('../../images/fond-categ.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.shop-hero__container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 4rem;
	align-items: center;
}

.shop-breadcrumb {
	margin-bottom: 1.5rem;
}

.woocommerce-breadcrumb {
	font-size: 13px;
	color: #999;
}

.woocommerce-breadcrumb a {
	color: #999;
	text-decoration: none;
	transition: color 0.3s ease;
}

.woocommerce-breadcrumb a:hover {
	color: var(--shop-text);
}

.shop-hero__title {
	font-size: 38px;
	font-weight: 400;
	color: #7a7a7a;
	margin: 0 0 1.25rem;
	line-height: 1.2;
}

.shop-hero__description {
	font-size: 15px;
	line-height: 1.6;
	color: #999;
	margin: 0;
}

.shop-hero__image {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
}

.shop-hero__image img {
	max-width: 100%;
	height: auto;
	max-height: 350px;
	object-fit: contain;
}

/* ==========================================================================
   Filtres rapides (boutons)
   ========================================================================== */
.shop-quick-filters {
	padding: 0 2rem 2rem;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
}

.quick-filters {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.filter-btn {
	padding: 0.625rem 1.75rem;
	border: 1px solid #e0e0e0;
	background: var(--shop-bg);
	color: #555758;
	font-size: 14px;
	font-weight: 400;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
	border-radius: 0;
}

.filter-btn:hover {
	border-color: var(--shop-primary);
	background: var(--shop-primary);
	color: #3a3a3a;
}

.filter-btn--active {
	background: var(--shop-primary);
	border-color: var(--shop-primary);
	color: #3a3a3a;
	font-weight: 400;
}

/* ==========================================================================
   Layout avec sidebar
   ========================================================================== */
.shop-content {
	padding: 2rem;
}

.shop-layout {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 3rem;
	align-items: start;
}

/* ==========================================================================
   Sidebar Filtres
   ========================================================================== */
.shop-sidebar {
	position: sticky;
	top: 220px;
}

.shop-sidebar__title {
	font-size: 32px;
	font-weight: 400;
	color: #7a7a7a;
	margin: 0 0 2rem;
	line-height: 1.2;
}

.shop-filter {
	margin-bottom: 1rem;
}

.shop-filter--sort {
	margin-bottom: 2rem;
}

.shop-filter--categories {
	margin-bottom: 2rem;
}

.shop-filter__label {
	display: block;
	font-weight: 500;
	color: #3a3a3a;
	margin-bottom: 0.875rem;
	font-size: 15px;
}

/* Liste des sous-catégories */
.shop-categories-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.shop-categories-item {
	margin-bottom: 0.625rem;
}

.shop-categories-item:last-child {
	margin-bottom: 0;
}

.shop-categories-link {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.5rem 0.75rem;
	font-size: 14px;
	color: #3a3a3a;
	text-decoration: none;
	transition: all 0.3s ease;
	border-left: 3px solid transparent;
}

.shop-categories-link:hover {
	background: #f9f9f9;
	border-left-color: #c8102e;
	padding-left: 1rem;
}

.shop-categories-count {
	color: #999;
	font-size: 13px;
}

/* Dropdown tri */
.shop-filter select,
.woocommerce-ordering select {
	width: 100%;
	padding: 1rem 2.5rem 1rem 1.25rem;
	border: 2px solid #e0e0e0;
	background: #fff;
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: #3a3a3a;
	cursor: pointer;
	appearance: none;
	border-radius: 4px;
	background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%233a3a3a' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1.25rem center;
	transition: border-color 0.2s ease;
}

.shop-filter select:hover,
.woocommerce-ordering select:hover {
	border-color: #3a3a3a;
	background: #fafafa;
}

.shop-filter select:focus,
.woocommerce-ordering select:focus {
	outline: none;
	border-color: #3a3a3a;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(58, 58, 58, 0.1);
}

/* Accordéons filtres */
.shop-filter--accordion {
	margin-bottom: 1rem;
	border: 2px solid #e0e0e0;
	background: #fff;
	border-radius: 4px;
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.shop-filter--accordion:hover {
	border-color: #d0d0d0;
}

.shop-filter--accordion:focus-within {
	border-color: #3a3a3a;
	box-shadow: 0 0 0 3px rgba(58, 58, 58, 0.05);
}

.shop-filter__toggle {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 1.25rem;
	background: #fff;
	border: none;
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: #3a3a3a !important;
	cursor: pointer;
	text-align: left;
	transition: background 0.2s ease, color 0.2s ease;
}

.shop-filter__toggle span {
	color: #3a3a3a !important;
}

.shop-filter__toggle:hover {
	background: #fafafa !important;
	color: #3a3a3a !important;
}

.shop-filter__toggle:hover span {
	color: #3a3a3a !important;
}

.shop-filter__toggle:focus {
	outline: none;
	background: #fafafa !important;
	color: #3a3a3a !important;
	box-shadow: inset 0 0 0 2px rgba(58, 58, 58, 0.1);
}

.shop-filter__toggle:focus span {
	color: #3a3a3a !important;
}

.shop-filter__toggle svg {
	transition: transform 0.3s ease, stroke 0.2s ease;
	stroke: #3a3a3a;
	flex-shrink: 0;
	width: 20px;
	height: 20px;
}

.shop-filter__toggle[aria-expanded="true"] {
	background: #fafafa !important;
	color: #3a3a3a !important;
	border-bottom: 2px solid #e0e0e0;
}

.shop-filter__toggle[aria-expanded="true"] span {
	color: #3a3a3a !important;
}

.shop-filter__toggle[aria-expanded="true"]:hover {
	background: #f5f5f5 !important;
	color: #3a3a3a !important;
}

.shop-filter__toggle[aria-expanded="true"]:hover span {
	color: #3a3a3a !important;
}

.shop-filter__toggle[aria-expanded="true"] svg {
	transform: rotate(180deg);
}

.shop-filter__content {
	padding: 1rem 1.25rem;
	background: #fff;
	max-height: 300px;
	overflow-y: auto;
}

.shop-filter__content[hidden] {
	display: none;
}

/* Scrollbar personnalisée */
.shop-filter__content::-webkit-scrollbar {
	width: 6px;
}

.shop-filter__content::-webkit-scrollbar-track {
	background: #f5f5f5;
	border-radius: 3px;
}

.shop-filter__content::-webkit-scrollbar-thumb {
	background: #d0d0d0;
	border-radius: 3px;
	transition: background 0.2s ease;
}

.shop-filter__content::-webkit-scrollbar-thumb:hover {
	background: #b0b0b0;
}

.shop-filter__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
}

.shop-filter__item {
	margin: 0;
}

.shop-filter__checkbox-label {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	cursor: pointer;
	font-size: 14px;
	color: #3a3a3a !important;
	font-family: 'Poppins', sans-serif;
	padding: 0.25rem 0;
	border-radius: 4px;
	transition: background 0.2s ease, padding 0.2s ease;
}

.shop-filter__checkbox-label span,
.shop-filter__checkbox-label * {
	color: #3a3a3a !important;
}

.shop-filter__checkbox-label:hover {
	background: #fafafa !important;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
}

.shop-filter__checkbox-label:hover,
.shop-filter__checkbox-label:hover span,
.shop-filter__checkbox-label:hover * {
	color: #000 !important;
}

/* Surcharge des règles globales pour les inputs dans les filtres */
.shop-filter__checkbox-label input[type="checkbox"]:hover,
.shop-filter__checkbox-label input[type="checkbox"]:focus {
	background-color: transparent !important;
	color: inherit !important;
}

.shop-filter__checkbox {
	width: 20px;
	height: 20px;
	border: 2px solid #d0d0d0;
	border-radius: 3px;
	cursor: pointer;
	accent-color: #3a3a3a;
	flex-shrink: 0;
	transition: all 0.2s ease;
}

.shop-filter__checkbox:hover {
	border-color: #3a3a3a;
}

.shop-filter__checkbox:focus {
	outline: none;
	border-color: #3a3a3a;
	box-shadow: 0 0 0 3px rgba(58, 58, 58, 0.1);
}

.shop-filter__checkbox:checked {
	border-color: #3a3a3a;
	background-color: #3a3a3a;
}

/* ==========================================================================
   Grille de produits
   ========================================================================== */
.shop-main {
	width: 100%;
}

/* Woo toolbar */
.woocommerce-result-count {
	display: none;
}

.woocommerce-ordering {
	margin: 0;
}

.woocommerce-ordering select {
	margin: 0;
}

/* Grille */
ul.products {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr) !important;
	gap: 2.5rem 2rem !important;
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	width: 100% !important;
}

ul.products::before,
ul.products::after {
	display: none !important;
}

.product-grid-item {
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
	width: 100% !important;
}

/* Stars rating global WooCommerce */
.woocommerce .star-rating {
	color: #FF9800;
	font-size: 14px;
}

.woocommerce .star-rating::before {
	color: #e0e0e0;
}

.woocommerce .star-rating span::before {
	color: #FF9800;
}

/* ==========================================================================
   Carte Produit
   ========================================================================== */
.rollergrill-product-card {
	margin: 0;
	padding: 0;
	list-style: none;
}

.product-card {
	position: relative;
	background: var(--shop-bg);
	border: none;
	transition: box-shadow 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.product-card:hover {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Badges */
.product-card__badges {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	right: 0.75rem;
	display: flex;
	gap: 0.5rem;
	z-index: 2;
}

.product-badge {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--shop-bg);
	border: none;
	padding: 0;
	cursor: pointer;
	transition: transform 0.2s ease;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-badge:hover {
	transform: scale(1.1);
}

.product-badge svg {
	width: 20px;
	height: 20px;
}

.product-badge--warranty {
	background: #F4C430;
	color: #3a3a3a;
}

.product-badge--featured {
	background: #fff;
}

.product-badge--featured svg {
	fill: #d93025;
}

.product-badge--new {
	background: #F4C430;
}

.product-badge--new svg {
	fill: #3a3a3a;
}

.product-badge--wishlist {
	margin-left: auto;
	background: #fff;
}

.product-badge--wishlist svg {
	stroke: #3a3a3a;
	stroke-width: 2;
	fill: none;
}

.product-badge--wishlist:hover svg,
.product-badge--wishlist.active svg {
	fill: #d93025;
	stroke: #d93025;
}

/* Image */
.product-card__image {
	display: block;
	position: relative;
	overflow: hidden;
	aspect-ratio: 1;
	background: #f9f9f9;
	padding: 2rem;
}

.product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 0.3s ease;
}

.product-card:hover .product-card__image img {
	transform: scale(1.03);
}

/* Contenu */
.product-card__content {
	padding: 1rem 1.25rem 1.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.product-card__ref {
	font-size: 13px;
	color: #999;
	margin: 0;
}

.product-card__rating {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0;
}

.product-card__rating .star-rating {
	font-size: 14px;
}

.product-card__rating .star-rating span {
	color: #FF9800;
}

.product-card__rating .star-rating span::before {
	color: #FF9800;
}

.product-card__reviews {
	font-size: 13px;
	color: #999;
}

.product-card__title {
	font-size: 15px;
	font-weight: 400;
	line-height: 1.4;
	margin: 0;
}

.product-card__title a {
	color: var(--shop-text);
	text-decoration: none;
	transition: color 0.3s ease;
	border-bottom: 1px solid var(--shop-text);
	display: inline;
}

.product-card__title a:hover {
	color: var(--shop-text);
	border-bottom-color: var(--shop-text);
}

/* ==========================================================================
   Pagination
   ========================================================================== */
.woocommerce-pagination {
	margin-top: 4rem !important;
	margin-bottom: 3rem !important;
	text-align: center !important;
}

.woocommerce-pagination ul.page-numbers {
	display: inline-flex !important;
	gap: 3rem !important;
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	align-items: center !important;
	border: none !important;
}

.woocommerce-pagination ul.page-numbers li,
.woocommerce nav.woocommerce-pagination ul li {
	margin: 0 !important;
	padding: 0 !important;
	display: inline-block !important;
	float: none !important;
	border: none !important;
	border-right: none !important;
	overflow: visible !important;
}

.woocommerce-pagination .page-numbers {
	display: inline-block !important;
	padding: 0 0 0.5rem 0 !important;
	margin: 0 !important;
	border: none !important;
	border-radius: 0 !important;
	background: transparent !important;
	background-color: transparent !important;
	color: #000 !important;
	text-decoration: none !important;
	font-family: "Plus Jakarta Sans", sans-serif !important;
	font-size: 16px !important;
	font-style: normal !important;
	font-weight: 400 !important;
	line-height: 130% !important;
	letter-spacing: 0.16px !important;
	font-feature-settings: 'liga' off, 'clig' off !important;
	border-bottom: 3px solid transparent !important;
	transition: all 0.2s ease !important;
	min-width: auto !important;
	width: auto !important;
	height: auto !important;
	text-align: center !important;
	box-shadow: none !important;
}

.woocommerce-pagination .page-numbers:hover {
	color: #000 !important;
	border-bottom-color: #000 !important;
	background: transparent !important;
	background-color: transparent !important;
}

.woocommerce-pagination .page-numbers.current {
	color: #000 !important;
	border-bottom: none !important;
	font-weight: 500 !important;
	background: transparent !important;
	background-color: transparent !important;
	position: relative !important;
}

.woocommerce-pagination .page-numbers.current::after {
	content: "" !important;
	position: absolute !important;
	bottom: 0 !important;
	left: 50% !important;
	transform: translateX(-50%) !important;
	width: 16px !important;
	height: 3px !important;
	background-color: #000 !important;
}

/* Dots (...) */
.woocommerce-pagination .page-numbers.dots {
	border-bottom: none !important;
	padding-bottom: 0 !important;
	font-size: 16px !important;
	color: #000 !important;
	letter-spacing: 2px !important;
}

/* Boutons Prev/Next (chevrons) */
.woocommerce-pagination .page-numbers.prev,
.woocommerce-pagination .page-numbers.next {
	font-size: 24px !important;
	padding-bottom: 0 !important;
	border-bottom: none !important;
	font-weight: 600 !important;
}

/* Remplacer la flèche par un chevron */
.woocommerce-pagination .page-numbers.next {
	font-size: 0 !important;
}

.woocommerce-pagination .page-numbers.next::after {
	content: "›" !important;
	font-size: 24px !important;
	font-weight: 600 !important;
	color: #000 !important;
}

.woocommerce-pagination .page-numbers.prev {
	font-size: 0 !important;
}

.woocommerce-pagination .page-numbers.prev::after {
	content: "‹" !important;
	font-size: 24px !important;
	font-weight: 600 !important;
	color: #000 !important;
}

/* ==========================================================================
   Cartes produits (même style que homepage-nouveautes)
   ========================================================================== */
.product-grid-item {
	list-style: none !important;
}

/* Carte produit */
.clem-nouveautes__item {
	position: relative !important;
	background: #fff !important;
	border: 4px solid transparent !important;
	border-radius: 8px !important;
	overflow: visible !important;
	transition: transform 0.3s ease, box-shadow 0.3s ease !important;
	margin-bottom: 20px !important;
}

.clem-nouveautes__item:hover {
	transform: translateY(-5px) !important;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12) !important;
}

/* Variante pour les listings (sans border) */
.clem-nouveautes__item--listing {
	position: relative !important;
	background: #fff !important;
	border: none !important;
	border-radius: 8px !important;
	overflow: visible !important;
	transition: transform 0.3s ease, box-shadow 0.3s ease !important;
	margin-bottom: 0 !important;
}

.clem-nouveautes__item--listing:hover {
	transform: translateY(-5px) !important;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12) !important;
}

.clem-nouveautes__link {
	display: block !important;
	text-decoration: none !important;
	color: inherit !important;
	height: 100% !important;
	padding: 16px !important;
	box-sizing: border-box !important;
}

/* Variante pour les listings (sans padding sur le lien) */
.clem-nouveautes__link--listing {
	display: block !important;
	text-decoration: none !important;
	color: inherit !important;
	height: 100% !important;
	padding: 0 !important;
	box-sizing: border-box !important;
}

/* Badge gamme (désactivé - non utilisé actuellement)
.clem-nouveautes__badge-gamme {
	position: absolute !important;
	top: 16px !important;
	left: 16px !important;
	width: 40px !important;
	height: 40px !important;
	border-radius: 50% !important;
	background: #FBF7F4 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-size: 20px !important;
	z-index: 2 !important;
}
*/

/* Container pour badges + wishlist (haut) */
.clem-nouveautes__top-badges {
	position: absolute !important;
	top: 16px !important;
	left: 16px !important;
	right: 16px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	z-index: 2 !important;
}

/* Badges tags */
.clem-nouveautes__badges-tags {
	display: flex !important;
	gap: 8px !important;
	align-items: center !important;
}

.clem-nouveautes__tag-icon {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 41px !important;
	height: 40px !important;
	background: #F4E5C4 !important;
	border-radius: 50% !important;
	box-shadow: 0 2px 6px rgba(0,0,0,0.1) !important;
	flex-shrink: 0 !important;
}

/* Picto Électrique (23x23px dans rond 41x40px) */
.clem-nouveautes__tag-icon--electric img {
	width: 23px !important;
	height: 23px !important;
	object-fit: contain !important;
	display: block !important;
}

/* Picto Gaz (14.438x20.918px dans rond 41x40px) */
.clem-nouveautes__tag-icon--gaz img {
	width: 29px !important;
	height: 30px !important;
	object-fit: contain !important;
	display: block !important;
}

/* Picto Froid (24x24px dans rond 41x40px) */
.clem-nouveautes__tag-icon--froid img {
	width: 24px !important;
	height: 24px !important;
	object-fit: contain !important;
	display: block !important;
}

/* Badges droite (Chaud + Wishlist) */
.clem-nouveautes__right-badges {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
}

/* Badge Chaud sans fond (juste le SVG) */
.clem-nouveautes__badge-chaud {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 24px !important;
	height: 24px !important;
	flex-shrink: 0 !important;
}

.clem-nouveautes__badge-chaud img {
	width: 24px !important;
	height: 24px !important;
	object-fit: contain !important;
	display: block !important;
}

/* Bouton Wishlist */
.clem-nouveautes__wishlist-btn {
	background: transparent !important;
	border: none !important;
	padding: 0 !important;
	cursor: pointer !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 24px !important;
	height: 24px !important;
	flex-shrink: 0 !important;
	transition: transform 0.2s ease !important;
}

.clem-nouveautes__wishlist-btn:hover {
	transform: scale(1.1) !important;
}

.clem-nouveautes__wishlist-btn:active {
	transform: scale(0.95) !important;
}

/* Cœurs (empty et full) */
.clem-nouveautes__heart {
	width: 24px !important;
	height: 24px !important;
	display: block !important;
}

.clem-nouveautes__heart--full {
	display: none !important;
}

.clem-nouveautes__wishlist-btn.is-favorite .clem-nouveautes__heart--empty {
	display: none !important;
}

.clem-nouveautes__wishlist-btn.is-favorite .clem-nouveautes__heart--full {
	display: block !important;
}

/* Image du produit */
.clem-nouveautes__image-wrapper {
	width: 100% !important;
	aspect-ratio: 282 / 271 !important;
	border-radius: 4px !important;
	background: #FBF7F4 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	overflow: hidden !important;
	margin-bottom: 16px !important;
}

.clem-nouveautes__image {
	width: 100% !important;
	height: 100% !important;
	object-fit: contain !important;
	padding: 32px !important;
}

/* Informations produit */
.clem-nouveautes__info {
	display: flex !important;
	flex-direction: column !important;
	gap: 8px !important;
}

/* Variante pour les listings (avec padding) */
.clem-nouveautes__info--listing {
	display: flex !important;
	flex-direction: column !important;
	gap: 8px !important;
	padding: 0 16px 16px 16px !important;
}

/* Référence */
.clem-nouveautes__reference {
	color: #999 !important;
	font-feature-settings: 'liga' off, 'clig' off !important;
	font-family: Poppins, sans-serif !important;
	font-size: 14px !important;
	font-style: normal !important;
	font-weight: 400 !important;
	margin: 0 !important;
	line-height: 1.4 !important;
}

/* Rating (étoiles + avis) */
.clem-nouveautes__rating {
	display: flex !important;
	align-items: center !important;
	gap: 8px !important;
}

.clem-nouveautes__stars {
	display: flex !important;
	gap: 2px !important;
}

.clem-nouveautes__star {
	font-size: 16px !important;
	line-height: 1 !important;
}

.clem-nouveautes__star--full {
	color: #F39C12 !important;
}

.clem-nouveautes__star--half {
	color: #F39C12 !important;
	opacity: 0.5 !important;
}

.clem-nouveautes__star--empty {
	color: #DDD !important;
}

.clem-nouveautes__review-count {
	color: #999 !important;
	font-feature-settings: 'liga' off, 'clig' off !important;
	font-family: Poppins, sans-serif !important;
	font-size: 14px !important;
	font-style: normal !important;
	font-weight: 400 !important;
}

/* Titre du produit */
.clem-nouveautes__title {
	color: #64181C !important;
	font-feature-settings: 'liga' off, 'clig' off !important;
	font-family: Poppins, sans-serif !important;
	font-size: 16px !important;
	font-style: normal !important;
	font-weight: 400 !important;
	line-height: 1.4 !important;
	margin: 0 !important;
	text-decoration: underline !important;
}

.clem-nouveautes__title:hover {
	color: #8B2428 !important;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
	.shop-hero__container {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.shop-hero__image {
		order: -1;
	}
	
	.shop-layout {
		grid-template-columns: 1fr;
	}
	
	.shop-sidebar {
		position: relative;
		top: 0;
	}
	
	ul.products {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 1.5rem !important;
	}
}

@media (max-width: 768px) {
	.rollergrill-shop-page {
		padding-top: 140px;
	}
	
	.shop-hero {
		padding: 2rem 1rem;
		margin-bottom: 1.5rem;
	}
	
	.shop-hero__title {
		font-size: 28px;
	}
	
	.shop-content {
		padding: 1rem;
	}
	
	.shop-quick-filters {
		padding: 0 1rem 1.5rem;
	}
	
	ul.products {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 1.5rem 1rem !important;
	}
	
	.clem-nouveautes__image {
		padding: 20px !important;
	}
}

@media (max-width: 480px) {
	.rollergrill-shop-page {
		padding-top: 120px;
	}
	
	.shop-hero {
		padding: 1.5rem 1rem;
	}
	
	.shop-hero__title {
		font-size: 24px;
	}
	
	ul.products {
		grid-template-columns: 1fr !important;
		gap: 1.5rem !important;
	}
}
