/**
 * WooCommerce Single Product - Styles RollerGrill
 */

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

/* ==========================================================================
   Variables
   ========================================================================== */
:root {
	--product-primary: #c8102e;
	--product-text: #3a3a3a;
	--product-text-light: #7a7a7a;
	--product-border: #e0e0e0;
	--product-bg: #ffffff;
	--product-bg-alt: #f9f9f9;
}

/* ==========================================================================
   Page produit
   ========================================================================== */
.single-product.woocommerce {
	padding-top: 210px;
}

.rollergrill-product-page {
	font-family: 'Poppins', sans-serif;
	color: var(--product-text);
}

/* Breadcrumb */
.product-breadcrumb-wrapper {
	background: white;
	padding: 2rem 2rem;
}

.product-breadcrumb-wrapper .woocommerce-breadcrumb {
	font-size: 13px;
	color: #999;
	margin: 0;
	max-width: 1200px;
	margin: 0 auto;
}

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

.product-breadcrumb-wrapper .woocommerce-breadcrumb a:hover {
	color: #F3CA27;
}

/* Conteneur principal */
.product-main {
	padding: 0 2rem 3rem 2rem;
	background: white;
}

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

.product-layout {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 3rem;
	align-items: start;
}

/* ==========================================================================
   Colonne Images
   ========================================================================== */
.product-images {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 600px;
}

/* Badges sur l'image (chaud/froid/wishlist) à droite */
.product-image-badges {
	position: absolute;
	top: 2rem;
	right: 2rem;
	z-index: 10;
	display: flex;
	flex-direction: row;
	gap: 0.5rem;
}

.product-image-badge {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: none;
}

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

/* Bouton wishlist sur l'image (même style que les badges) */
.product-image-wishlist-btn {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: none;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: transform 0.3s ease;
	box-shadow: none;
	padding: 0;
}

.product-image-wishlist-btn:hover {
	transform: scale(1.15);
	background: transparent;
}

.product-image-heart {
	width: 24px;
	height: 24px;
	position: absolute;
	transition: opacity 0.3s ease;
}

.product-image-heart--empty {
	display: block;
	opacity: 1;
}

.product-image-heart--full {
	display: none;
	opacity: 0;
}

.product-image-wishlist-btn.is-favorite .product-image-heart--empty {
	display: none;
	opacity: 0;
}

.product-image-wishlist-btn.is-favorite .product-image-heart--full {
	display: block;
	opacity: 1;
}

/* Galerie d'images */
.woocommerce-product-gallery {
	background: #FAF6F2;
	border-radius: 0;
	padding: 2rem;
	position: relative;
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.woocommerce-product-gallery__wrapper {
	background: transparent;
	width: 100%;
}

.woocommerce-product-gallery__image {
	margin: 0 !important;
	width: 100% !important;
}

.woocommerce-product-gallery__image img {
	width: 100% !important;
	height: auto !important;
	object-fit: contain !important;
	display: block !important;
	max-height: 400px !important;
}

.woocommerce-product-gallery__trigger {
	display: none !important;
}

/* Miniatures (thumbnails) */
.flex-control-thumbs {
	display: none !important;
}

/* Icônes en bas */
/* Bouton zoom sur l'image */
.woocommerce-product-gallery {
	position: relative;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.product-zoom-btn {
	position: absolute;
	bottom: 1rem;
	left: 1rem;
	width: 45px;
	height: 45px;
	padding: 5px !important;
	border-radius: 50%;
	border: 2px solid #C99632;
	background: #FEFABD;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: none;
	z-index: 10;
}

.product-zoom-btn:hover {
	background: #F8E147;
	transform: scale(1.1);
}

.product-zoom-btn svg {
	width: 32px;
	height: 32px;
}

/* Overlay zoom avec blur */
.product-zoom-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	opacity: 0;
	transition: opacity 0.3s ease;
	cursor: zoom-out;
}

.product-zoom-overlay.is-visible {
	opacity: 1;
}

.product-zoomed-image {
	max-width: 90%;
	max-height: 90vh;
	object-fit: contain;
	border-radius: 8px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.3);
	transform: scale(0.9);
	transition: transform 0.3s ease;
	cursor: default;
}

.product-zoom-overlay.is-visible .product-zoomed-image {
	transform: scale(1);
}

.product-zoom-close {
	position: absolute;
	top: 2rem;
	right: 2rem;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: none;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(10px);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 10;
}

.product-zoom-close:hover {
	background: rgba(0, 0, 0, 0.8);
	transform: scale(1.1);
}

/* Effet blur sur le contenu de la page */
.is-blurred {
	filter: blur(8px);
	transition: filter 0.3s ease;
}

/* ==========================================================================
   Colonne Informations
   ========================================================================== */
.product-summary {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

/* Header avec référence et badges */
.product-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* Référence */
.product-reference {
	font-size: 14px;
	color: #999;
	margin: 0;
}

/* Wishlist en haut à droite */
.product-header-right {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

/* Wishlist */
.product-wishlist-btn {
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: transform 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

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

.product-heart {
	width: 28px;
	height: 28px;
}

.product-heart--full {
	display: none;
}

.product-wishlist-btn.is-favorite .product-heart--empty {
	display: none;
}

.product-wishlist-btn.is-favorite .product-heart--full {
	display: block;
}

/* Titre */
.product-title {
	font-size: 28px;
	font-weight: 400;
	color: #7a7a7a;
	margin: 0;
	line-height: 1.4;
}

/* Badge France + Bouton Audio */
.product-badges-row {
	display: flex;
	align-items: center;
	gap: 2.75rem;
}

.product-badge-france {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1.25rem;
	border-radius: 8px;
	background: #F3CA27;
	color: #FFF;
	font-feature-settings: 'liga' off, 'clig' off;
	font-family: Poppins, sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 130%;
	letter-spacing: 0.14px;
	flex-shrink: 0;
}

.product-badge-france .france-flag {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.product-badge-france .france-flag img {
	width: 18px;
	height: 18px;
	object-fit: contain;
}

.product-audio-wrapper {
	display: flex;
	align-items: center;
	flex: 1;
}

.product-audio-circle {
	width: 64px;
	height: 64px;
	border-radius: 64px;
	border: 1px solid #F8E147;
	background: #FEFABD;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	flex-shrink: 0;
	padding: 0;
	position: relative;
	z-index: 2;
	margin-right: -32px;
}

.product-audio-circle:hover {
	transform: scale(1.05);
}

.product-audio-circle svg {
	width: 64px;
	height: 64px;
}

.product-audio-text {
	background: #F4F4F4;
	padding: 0.5rem 1rem 0.5rem 2.5rem;
	border-radius: 8px;
	line-height: 1.4;
	position: relative;
	z-index: 1;
	flex: 1;
}

.product-audio-text .audio-text-main {
	color: #555758;
	font-feature-settings: 'liga' off, 'clig' off;
	font-family: Poppins, sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 140%;
	letter-spacing: 0.14px;
}

.product-audio-text .audio-text-sub {
	color: #555758;
	font-feature-settings: 'liga' off, 'clig' off;
	font-family: Poppins, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
	letter-spacing: 0.12px;
}

/* Description courte */
.product-short-description {
	font-size: 14px;
	line-height: 1.7;
	color: var(--product-text);
}

.product-short-description p {
	margin: 0 0 0.75rem;
	color: #555758;
	font-feature-settings: 'liga' off, 'clig' off;
	font-family: Poppins;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
	letter-spacing: 0.14px;
}

.product-short-description p:last-child {
	margin-bottom: 0;
}

/* Boutons d'action */
.product-action-buttons {
	display: flex;
	gap: 1rem;
}

.product-btn {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	padding: 1rem 1.5rem;
	background: white;
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: #555758;
	cursor: pointer;
	transition: all 0.3s ease;
	border-radius: 3px;
	border: 1px solid #555758;
}

.product-btn:hover {
	background: var(--product-bg-alt);
	border-color: var(--product-text);
	color: #555758;
}

.product-btn svg {
	color: var(--product-text);
	flex-shrink: 0;
	width: 20px;
	height: 20px;
}

/* Bouton Nous appeler (fond gris foncé) */
.product-btn--contact {
	background: #555758;
	border-color: #555758;
	color: white;
}

.product-btn--contact svg {
	color: white;
	stroke: white;
}

.product-btn--contact:hover {
	background: #3a3a3a;
	border-color: #3a3a3a;
}

/* Bouton Ajouter au devis */
.product-btn--quote {
	flex: initial;
	width: 100%;
	background: white;
	border: 1px solid #555758;
	color: #555758;
	padding: 1.25rem 1.5rem;
	font-weight: 500;
}

.product-btn--quote:hover {
	background: #f5f5f5;
	border-color: #555758;
	color: #555758;
}

.product-btn--quote svg {
	color: #555758;
}

/* Loader pour bouton fiche produit */
.product-btn--print.is-loading {
	position: relative;
	pointer-events: none;
	color: transparent;
}

.product-btn--print.is-loading svg {
	opacity: 0;
}

.product-btn--print.is-loading::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 20px;
	height: 20px;
	margin: -10px 0 0 -10px;
	border: 2px solid #555758;
	border-top-color: transparent;
	border-radius: 50%;
	animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
	to { transform: rotate(360deg); }
}

/* Badges d'information (en bas) */
.product-badges-info {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding-top: 1.5rem;
	border-top: none;
	width: 100%;
}

.woocommerce div.product .woocommerce-tabs ul.tabs{
	padding: 0 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li{
	padding: 0 5px !important;
}


.product-badge-item {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0.75rem;
	flex: 1;
}

.product-badge-icon-wrapper {
	width: 60px;
	height: 60px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #FEFABD;
	border-radius: 12px;
	padding: 0.75rem;
}

.product-badge-icon-wrapper svg,
.product-badge-icon-wrapper img {
	width: 32px;
	height: 32px;
	object-fit: contain;
}

.product-badge-text {
	font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 14px;
	line-height: 19px;
	color: #000;
	font-weight: 500;
	font-style: normal;
	text-align: left;
}

.product-badge-text span {
	color: #717171;
}

/* ==========================================================================
   Onglets de contenu
   ========================================================================== */
.product-tabs {
	background: white;
	padding: 3rem 2rem;
	margin-top: 3rem;
}

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

.woocommerce-tabs .tabs {
	display: flex;
	gap: 3rem;
	margin-bottom: 2rem;
	list-style: none;
	padding: 0;
	flex-wrap: wrap;
	border-bottom: none;
}

.woocommerce-tabs .tabs li {
	margin: 0;
	border: none !important;
	background: transparent !important;
}

/* Supprimer les pseudo-éléments ::before et ::after qui ajoutent des arrondis */
.woocommerce-tabs .tabs li::before,
.woocommerce-tabs .tabs li::after,
.woocommerce-tabs .tabs li:before,
.woocommerce-tabs .tabs li:after {
	display: none !important;
	content: none !important;
	border: none !important;
}

.woocommerce-tabs .tabs li a {
	display: block;
	padding: 0 0 1rem;
	font-family: 'Poppins', sans-serif;
	font-size: 24px !important;
	font-weight: 300 !important;
	color: #555758 !important;
	font-feature-settings: 'liga' off, 'clig' off;
	font-style: normal;
	line-height: 130%;
	letter-spacing: 0.24px;
	text-decoration: none;
	background: transparent !important;
	border: none !important;
	border-bottom: 2px solid transparent !important;
	margin-bottom: -1px;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before{
	display: none !important;
}

.woocommerce-tabs .tabs li.active a {
	font-weight: 500 !important;
	color: #555758 !important;
	border-bottom-color: #555758 !important;
}

.woocommerce-tabs .tabs li a:hover {
	color: #555758 !important;
}

.woocommerce-tabs .woocommerce-Tabs-panel {
	background: white;
	padding: 0;
	font-size: 14px;
	line-height: 1.8;
	color: #666;
}

.woocommerce-tabs .woocommerce-Tabs-panel h2 {
	font-size: 20px;
	font-weight: 600;
	margin: 0 0 1.5rem;
	color: #3a3a3a;
	border: none;
	padding: 0;
	background: transparent;
}

.woocommerce-tabs .woocommerce-Tabs-panel h3 {
	font-size: 17px;
	font-weight: 600;
	margin: 1.5rem 0 0.75rem;
	color: #3a3a3a;
	border: none;
	padding: 0;
	background: transparent;
}

.woocommerce-tabs .woocommerce-Tabs-panel p {
	margin: 0 0 1rem;
}

.woocommerce-tabs .woocommerce-Tabs-panel p:last-child {
	margin-bottom: 0;
}

.woocommerce-tabs .woocommerce-Tabs-panel strong {
	font-weight: 600;
	color: #3a3a3a;
}

/* Tableau informations complémentaires */
.woocommerce-tabs .woocommerce-product-attributes {
	width: 100%;
	border-collapse: collapse;
	margin: 0;
}

.woocommerce-tabs .woocommerce-product-attributes tr {
	border: none;
}

.woocommerce-tabs .woocommerce-product-attributes tr:nth-child(odd) {
	background: #f9f9f9;
}

.woocommerce-tabs .woocommerce-product-attributes tr:nth-child(even) {
	background: white;
}

.woocommerce-tabs .woocommerce-product-attributes th,
.woocommerce-tabs .woocommerce-product-attributes td {
	padding: 0.875rem 1.25rem;
	text-align: left;
	border: none;
	font-size: 14px;
}

.woocommerce-tabs .woocommerce-product-attributes th {
	font-weight: 600;
	color: #3a3a3a;
	width: 40%;
}

.woocommerce-tabs .woocommerce-product-attributes td {
	color: #666;
	font-style: normal;
}

/* ==========================================================================
   Onglet Téléchargements
   ========================================================================== */
.product-downloads {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

/* Sections séparées (Dossiers techniques / Notices) */
.product-downloads-section {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.product-downloads-section-title {
	font-family: 'Poppins', sans-serif;
	font-size: 18px;
	font-weight: 500;
	color: #64181C;
	margin: 0;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid #e0e0e0;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.login-required-badge {
	font-size: 13px;
	font-weight: 400;
	color: #999;
	background: #f5f5f5;
	padding: 0.25rem 0.75rem;
	border-radius: 4px;
}

.product-downloads-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.product-download-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.25rem;
	background: #f9f9f9;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.product-download-item:hover {
	background: #f5f5f5;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.product-download-item .download-icon {
	color: #F3CA27;
	flex-shrink: 0;
}

.product-download-item .download-info {
	flex: 1;
}

.product-download-item .download-info h4 {
	font-size: 15px;
	font-weight: 500;
	margin: 0 0 0.25rem;
	color: var(--product-text);
}

.product-download-item .download-size {
	font-size: 13px;
	color: var(--product-text-light);
}

.product-download-item .download-btn {
	padding: 0.625rem 1.5rem;
	background: #F3CA27;
	color: white;
	text-decoration: none;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.product-download-item .download-btn:hover {
	background: #d2aa0b;
	transform: scale(1.05);
}

/* Item verrouillé */
.product-download-item.is-locked {
	opacity: 0.8;
}

.product-download-item .download-btn--locked {
	background: #999;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.product-download-item .download-btn--locked:hover {
	background: #888;
	transform: scale(1.05);
}

/* ==========================================================================
   Produits liés (carousel)
   ========================================================================== */
.related-products-section {
	padding: 3rem 2rem;
	background: #FAF6F2;
}

.related-products__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2rem;
	max-width: 1200px;
	margin: 0 auto 2rem;
}

.related-products__title {
	font-size: 24px;
	font-weight: 400;
	color: #7a7a7a;
	margin: 0;
}

.related-products__nav {
	display: flex;
	gap: 0.5rem;
}

.related-products__nav-btn {
	width: 36px;
	height: 36px;
	border: none;
	background: transparent;
	color: #999;
	font-size: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: color 0.3s ease;
	line-height: 1;
	outline: none;
}

.related-products__nav-btn:hover {
	background: transparent;
	color: #333;
}

.related-products__nav-btn:focus,
.related-products__nav-btn:active,
.related-products__nav-btn:focus-visible {
	background: transparent;
	outline: none;
	box-shadow: none;
}

.related-products__nav-btn span {
	display: block;
	margin-top: -3px;
}

.related-products__slider-wrapper {
	overflow: hidden;
	max-width: 1200px;
	margin: 0 auto;
}

.related-products__slider {
	display: flex;
	gap: 1.5rem;
	overflow-x: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	padding-bottom: 1rem;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.related-products__slider::-webkit-scrollbar {
	display: none;
}

/* Carte produit simplifiée (image + nom seulement) */
.related-products__card {
	flex: 0 0 260px;
	min-width: 260px;
	scroll-snap-align: center;
	transition: transform 0.3s ease;
}

.related-products__card:hover {
	transform: scale(1.05);
}

.related-products__link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.related-products__image-wrapper {
	width: 100%;
	height: 220px;
	background: #FBF7F4;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding: 1.5rem;
	border-radius: 8px;
	margin-bottom: 0.75rem;
}

.related-products__image {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.related-products__name {
	color: #555758;
	font-feature-settings: 'liga' off, 'clig' off;
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
	letter-spacing: 0.16px;
	margin: 0;
	text-align: center;
}

.product-related {
	padding: 0rem 2rem;
	background: #FAF6F2;
}

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

.related.products h2 {
	font-size: 28px;
	font-weight: 400;
	color: var(--product-text);
	margin: 0 0 2rem;
}

/* ==========================================================================
   Section Produits Similaires / Vous pourrez apprécier
   ========================================================================== */
.product-similar-section,
.product-appreciate-section {
	padding: 80px 40px;
	background: rgba(250, 246, 242, 0.30);
	overflow: hidden;
}

.product-similar__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2rem;
	max-width: 1200px;
	margin: 0 auto 2rem;
}

.product-appreciate__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
	max-width: 1200px;
	margin: 0 auto 40px;
}

.product-similar__title {
	color: #555758;
	font-family: 'Poppins', sans-serif;
	font-size: 32px;
	font-style: normal;
	font-weight: 300;
	line-height: normal;
	margin: 0;
}

.product-appreciate__title {
	color: #555758;
	font-feature-settings: 'liga' off, 'clig' off;
	font-family: 'Poppins', sans-serif;
	font-size: 40px;
	font-style: normal;
	font-weight: 300;
	line-height: 130%;
	letter-spacing: 0.4px;
	margin: 0;
}

.product-similar__nav,
.product-appreciate__nav {
	display: flex;
	gap: 0.5rem;
}

.product-similar__nav-btn {
	width: 36px;
	height: 36px;
	border: none;
	background: transparent;
	color: #999;
	font-size: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: color 0.3s ease;
	outline: none;
}

.product-similar__nav-btn:hover {
	color: #333;
	background: transparent;
}

.product-similar__nav-btn:focus,
.product-similar__nav-btn:active,
.product-similar__nav-btn:focus-visible {
	background: transparent;
	outline: none;
	box-shadow: none;
}

.product-appreciate__nav {
	display: flex;
	gap: 12px;
}

.product-appreciate__nav-btn {
	width: 40px;
	height: 40px;
	border: none;
	background: transparent;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	color: #555758;
	transition: color 0.3s ease;
	outline: none;
}

.product-appreciate__nav-btn:hover {
	color: #000;
	background: transparent;
}

.product-appreciate__nav-btn:focus,
.product-appreciate__nav-btn:active,
.product-appreciate__nav-btn:focus-visible {
	background: transparent;
	outline: none;
	box-shadow: none;
}

.product-similar__slider-wrapper {
	overflow: hidden;
	max-width: 1200px;
	margin: 0 auto;
}

.product-similar__slider {
	display: flex;
	gap: 1.5rem;
	overflow-x: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	padding-bottom: 1rem;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.product-similar__slider::-webkit-scrollbar {
	display: none;
}

.product-appreciate__slider-wrapper {
	overflow: hidden;
	width: 100%;
}

.product-appreciate__slider {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding-bottom: 20px;
}

.product-appreciate__slider::-webkit-scrollbar {
	display: none;
}

/* Carte produit similaire */
.product-similar__card {
	flex: 0 0 270px;
	min-width: 270px;
	scroll-snap-align: center;
}

.product-similar__link {
	text-decoration: none;
	color: inherit;
	display: block;
}

.product-similar__image-wrapper {
	position: relative;
	background: #FAF6F2;
	border-radius: 8px;
	padding: 1.5rem;
	margin-bottom: 0.75rem;
	height: 220px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.product-similar__image-wrapper:hover .product-similar__image {
	transform: scale(1.05);
}

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

.product-similar__card-badges {
	position: absolute;
	top: 0.5rem;
	right: 0.75rem;
	display: flex;
	gap: 0.4rem;
	align-items: center;
	z-index: 2;
}

.product-similar__badge {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: none;
}

.product-similar__badge svg {
	width: 28px;
	height: 28px;
}

.product-similar__wishlist-btn {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: transparent;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: none;
	padding: 0;
	transition: transform 0.2s ease;
}

.product-similar__wishlist-btn:hover {
	background: transparent;
	transform: scale(1.1);
}

.product-similar__info {
	padding: 0 0.25rem;
}

.product-similar__ref {
	font-size: 12px;
	color: #999;
	display: block;
	margin-bottom: 0.25rem;
}

.product-similar__rating {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.25rem;
}

.product-similar__rating .star-rating {
	font-size: 12px;
}

.product-similar__review-count {
	font-size: 12px;
	color: #999;
}

.product-similar__name {
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	font-weight: 500;
	color: #64181C;
	margin: 0;
	line-height: 1.4;
}

/* ==========================================================================
   Section 4 Logos
   ========================================================================== */
.product-logos-section {
	padding: 3rem 2rem;
	background: #FAF6F2;
}

.product-logos__grid {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	max-width: 1200px;
	margin: 0 auto;
}

.product-logos__item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	padding: 1.5rem 1rem;
	text-align: center;
}

.product-logos__icon {
	width: 72px;
	height: 72px;
	object-fit: contain;
}

.product-logos__text {
	color: #555758;
	text-align: center;
	font-feature-settings: 'liga' off, 'clig' off;
	font-family: "Plus Jakarta Sans", sans-serif !important;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 130%; /* 20.8px */
	letter-spacing: 0.16px;
}

.product-logos__divider {
	width: 1px;
	height: 80px;
	background: #e0e0e0;
	flex-shrink: 0;
}

/* ==========================================================================
   Section Avis clients
   ========================================================================== */
.product-reviews-section {
	padding: 3rem 0;
	background: white;
}

.product-reviews__title {
	font-family: 'Poppins', sans-serif;
	font-size: 26px;
	font-weight: 400;
	color: #555758;
	max-width: 1200px;
	margin-bottom: 2rem;
}

.product-reviews__slider-wrapper {
	position: relative;
	overflow: hidden;
	margin-left: auto;
	margin-right: 0;
	width: 100%;
}

.product-reviews__slider {
	display: flex;
	gap: 1.5rem;
	overflow-x: auto;
	scroll-behavior: smooth;
	padding: 0 2rem 1rem 0;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.product-reviews__slider::-webkit-scrollbar {
	display: none;
}

.product-reviews__card {
	flex: 0 0 300px;
	min-width: 300px;
	scroll-snap-align: center;
	background: #FAF6F2;
	border-radius: 0;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	box-shadow: none;
}

.product-reviews__stars {
	display: flex;
	gap: 4px;
	justify-content: center;
	align-items: center;
}

.product-reviews__stars svg {
	flex-shrink: 0;
}

.product-reviews__text {
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	font-weight: 400;
	color: #555758;
	line-height: 1.6;
	text-align: center;
	margin: 0;
	font-style: italic;
}

.product-reviews__author {
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: #64181C;
	text-align: center;
	font-style: italic;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
	.product-layout {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.product-title {
		font-size: 28px;
	}
	
	.product-badges-info {
		gap: 1rem;
	}
}

@media (max-width: 768px) {
	.product-main {
		padding: 2rem 1rem;
	}
	
	.product-breadcrumb-wrapper {
		padding: 1rem;
	}
	
	.woocommerce-product-gallery {
		min-height: 280px;
		padding: 1.5rem;
	}
	
	.woocommerce-product-gallery__image img {
		max-height: 280px !important;
	}
	
	.product-title {
		font-size: 24px;
	}
	
	.product-action-buttons {
		flex-direction: column;
	}
	
	.product-badges-row {
		flex-direction: column;
		align-items: stretch;
		gap: 1rem;
	}
	
	.product-badge-france {
		width: 100%;
		justify-content: center;
	}
	
	.product-audio-wrapper {
		width: 100%;
	}
	
	.product-badges-info {
		gap: 0.5rem;
	}
	
	.product-badge-icon-wrapper {
		width: 50px;
		height: 50px;
		padding: 0.5rem;
	}
	
	.product-badge-icon-wrapper svg,
	.product-badge-icon-wrapper img {
		width: 28px;
		height: 28px;
	}
	
	.product-badge-text {
		font-size: 12px;
		line-height: 16px;
	}
	
	.product-audio-text {
		flex-basis: 100%;
	}
	
	.product-tabs {
		padding: 2rem 1rem;
	}
	
	.woocommerce-tabs .tabs {
		flex-wrap: wrap;
		gap: 0.5rem;
	}
	
	.woocommerce-tabs .tabs li a {
		padding: 0.75rem 1rem;
		font-size: 14px;
	}
	
	/* Sections carrousel responsive */
	.product-similar-section,
	.product-appreciate-section {
		padding: 60px 30px;
	}
	
	.product-reviews-section {
		padding: 2rem 1rem;
	}
	
	.product-appreciate__title {
		font-size: 28px;
	}
	
	.product-similar__card {
		flex: 0 0 200px;
		min-width: 200px;
	}
	
	.product-similar__image-wrapper {
		height: 180px;
		padding: 1rem;
	}
	
	.related-products__card {
		flex: 0 0 200px;
		min-width: 200px;
	}
	
	.related-products__image-wrapper {
		height: 180px;
		padding: 1rem;
	}
	
	.related-products__name {
		font-size: 14px;
		padding: 0.75rem;
	}
	
	.product-reviews__card {
		flex: 0 0 250px;
		min-width: 250px;
		padding: 1.5rem;
	}
	
	/* 4 logos responsive */
	.product-logos-section {
		padding: 2rem 1rem;
	}
	
	.product-logos__grid {
		flex-wrap: wrap;
		gap: 0;
	}
	
	.product-logos__item {
		flex: 0 0 50%;
		padding: 1rem 0.5rem;
	}
	
	.product-logos__divider {
		display: none;
	}
	
	.product-logos__icon {
		width: 56px;
		height: 56px;
	}
	
	.product-logos__text {
		font-size: 12px;
	}
	
	.product-similar__title {
		font-size: 24px;
	}
	
	.product-appreciate-section {
		padding: 40px 20px;
	}
	
	.product-appreciate__header {
		margin-bottom: 24px;
	}
	
	.product-appreciate__title {
		font-size: 24px;
	}
	
	.product-appreciate__nav-btn {
		width: 36px;
		height: 36px;
		font-size: 28px;
	}
	
	.product-reviews__title {
		font-size: 22px;
	}
}
