/*
 Theme Name:   Astra Child
 Theme URI:    https://example.com/astra-child/
 Description:  Thème enfant pour Astra
 Author:       Arnaud de WashiDigital
 Author URI:   https://washidigital.com
 Template:     astra
 Version:      1.0.0
*/

/* Ici tu peux ajouter ton CSS personnalisé */

/* Style pour la fourchette de prix affichée dans la boutique */
td, th {
	font-size: 12px;
	text-align: center;
}

html {
	scroll-behavior: smooth;
}

.em.em-list .em-item .em-item-info {
	border-left: 3px solid #275C53;
}

.em.pixelbones a {
	color: var(--a-color-1) !important;
}

.name-fields {
	display: flex;
	gap: 16px;
	height: 64px;
}

.name-fields label {
	flex: 1;
}

.wpcf7 .wpcf7-form .wpcf7-form-control {
	width: 100%;
	font-size: 16px;
	padding: 16px;
}

.menu-item a {
	position: relative;
	display: inline-block;
	text-decoration: none;
}

.menu-item a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background-color: currentColor;
	transition: width 0.4s ease-in-out;
}

.menu-item a:hover::after,
.menu-item a:focus::after,
.menu-item.current-menu-item a::after {
	width: 100%;
}

.marquee-container {
	overflow: hidden;
	white-space: nowrap;
	position: relative;
	width: 100%;
	background: #F5F0EA;
	padding: 10px 0;
}

.marquee-wrapper {
	display: flex;
	width: max-content;
	animation: marquee 30s linear infinite;
}

.marquee-text {
	color: #275c53;
	display: flex;
	white-space: nowrap;
	padding-right: 50px;
}

.marquee-container:hover .marquee-wrapper {
	animation-play-state: paused;
}

@keyframes marquee {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

@media (min-width: 922px) {
	.ast-container {
		max-width: none !important;
	}
}

.hfeed .ast-container {
	padding-left: 0;
	padding-right: 0;
}

.wpr-grid-image-wrap img {
	height: 250px;
	object-fit: cover;
	object-position: top;
}


.ast-on-card-button .ahfb-svg-iconset {
	display: none;
}

.woocommerce ul.products li.product.desktop-align-left .star-rating,
.woocommerce ul.products li.product.desktop-align-left .button,
.woocommerce-page ul.products li.product.desktop-align-left .star-rating,
.woocommerce-page ul.products li.product.desktop-align-left .button {
	padding: 12px 24px;
	font-size: 14px;
}

.elementor-2198 .elementor-element.elementor-element-06f39d1 .shopengine-archive-products:not(.shopengine-archive-products--view-list) .product>a {
	color: #565656;
}


.elementor-2198 .elementor-element.elementor-element-06f39d1 .shopengine-archive-products:not(.shopengine-archive-products--view-list) .product>a:hover {
	color: #E2BB53;
}

.shopengine-wishlist.badge {
	color: #565656;
	margin: 0;
	padding-left: 0;
}

.shopengine-wishlist.badge:hover {
	color: #E2BB53;
}

div.astra-shop-summary-wrap>a.shopengine-quickview-trigger.se-btn {
	color: #565656;
}

div.astra-shop-summary-wrap>a.shopengine-quickview-trigger.se-btn:hover {
	color: #E2BB53;
}

.shopengine-comparison.badge.inactive {
	color: #565656;
}

.shopengine-comparison.badge.inactive:hover {
	color: #E2BB53;
}

.astra-shop-summary-wrap {
	padding: 16px 16px;
}

.woocommerce-js ul.products li.product a img,
.woocommerce-page ul.products li.product a img {
	margin-bottom: 0;
}

.bloc-home li.product {
	border: 1px solid #F2F2F2;
	background-color: #FAFAFA;
}

.woocommerce ul.products li.product.desktop-align-left .star-rating,
.woocommerce ul.products li.product.desktop-align-left .button,
.woocommerce-page ul.products li.product.desktop-align-left .star-rating,
.woocommerce-page ul.products li.product.desktop-align-left .button {
	padding: 8px 24px;
	font-size: 12px;
}

.titre-laboutique {
	font-size: 12px;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-weight: 400;
	line-height: 12px;
}

.carrousel-partners {
	display: flex;
	overflow: hidden;
	width: 100%;
	position: relative;
	align-items: center;
	box-sizing: border-box;
}

.carrousel-partners a {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	padding: 32px 0;
}

.carrousel-partners img {
	height: 80px;
	width: auto;
	max-width: 200px;
	object-fit: contain;
	display: block;
	margin: 0 48px;
	transition: transform 0.3s ease;
	/* Ajout d'une transition fluide pour le zoom */
}



/* Effet de zoom au hover */
.carrousel-partners img:hover {
	transform: scale(1.1);
	/* Agrandissement de l'image au survol */
}

/* Animation de défilement */
@keyframes scroll-carousel {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-100%);
	}
}

/* Animation continue du carrousel */
.carrousel-partners {
	animation: scroll-carousel 80s linear infinite;
}

/* Arrêter l'animation au survol */
.carrousel-partners:hover {
	animation-play-state: paused;
}

/* Option pour ajuster le comportement à la taille du conteneur */
@media (max-width: 768px) {
	.carrousel-partners img {
		max-width: 120px;
		/* Ajuster la taille pour les petits écrans */
	}
}

/* Ajouter un wrapper pour créer un carrousel infini */
.carrousel-wrapper {
	display: flex;
	flex-wrap: nowrap;
	width: 100%;
}

.carrousel-partners {
	display: flex;
	animation: scroll-carousel 80s linear infinite;
	width: max-content;
}

.woocommerce-js .quantity .qty {
	margin-left: 0;
}

.elementor-4158 .elementor-element.elementor-element-06f39d1 .shopengine-archive-products .product .attachment-woocommerce_thumbnail {
	margin-bottom: 0 !important;
}

.woocommerce-js input[type=number].qty {
	border: 1px solid #ccc;
}

.woocommerce-js div.product form.cart {
	align-items: start;
}

.elementor-4158 .elementor-element.elementor-element-06f39d1 .shopengine-archive-products .product a.button:not(.shopengine-quickview-trigger) {
	line-height: 15px;
}

.elementor-2315 .elementor-element.elementor-element-f0acf88 .shopengine-archive-products .product a.button:not(.shopengine-quickview-trigger) {
	line-height: 15px;
}



.standard-quantity,
.grammage-product {
	font-weight: 400;
	padding: 4px 0;
}



.bulk_table {
	display: none;
}

body.archive .product.type-product.has-fourchette .price {
	display: none !important;
}


.fourchette-prix {
	font-size: 16px;
	color: #101010;
	padding: 8px 16px 16px;
	font-weight: 700;
	line-height: 20px;
}

.shopengine-widget .shopengine-swatches .cart {
	display: -webkit-box !important;
}

.woocommerce-js div.product form.cart table td {
	padding: 8px 24px !important;
}

.elementor-4158 .elementor-element.elementor-element-06f39d1 .shopengine-archive-products:not(.shopengine-archive-products--view-list) ul.products li.product .woocommerce-loop-product__title {
	height: 72px;
}

.elementor-4158 .elementor-element.elementor-element-06f39d1 .shopengine-archive-products .product a.button:not(.shopengine-quickview-trigger) {
	height: 32px;
}

.elementor-4158 .elementor-element.elementor-element-06f39d1 .shopengine-archive-products .product-categories {
	height: 40px;
}

/* Style bouton Rupture de stock */
a.button.out-of-stock {
	background-color: #ccc !important;
	color: #666 !important;
	border: 1px solid #aaa !important;
	cursor: pointer !important;
	text-align: center;
	opacity: 0.7;
}

a.button.out-of-stock:hover {
	background-color: #bbb !important;
	color: #555 !important;
}

.elementor-2315 .elementor-element.elementor-element-f0acf88 .shopengine-archive-products:not(.shopengine-archive-products--view-list) ul.products li.product .woocommerce-loop-product__title {
	height: 72px !important;
}

.elementor-4708 .elementor-element.elementor-element-89c8505 .shopengine-recently-viewed-products .shopengine-single-product-item .product-title {
	line-height: 24px !important;
}

.elementor-4708 .elementor-element.elementor-element-89c8505 .shopengine-recently-viewed-products .recent-viewed-product-list :is(.shopengine-single-product-item, .price) {
	height: 350px !important;
}

.unit-price-display {
	font-size: 14px;
	color: #666;
	margin-top: 4px;
}

.products-per-page-selector {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	font-size: 14px;
	margin-bottom: 48px;
}

.per-page-btn {
	padding: 4px 8px;
	color: #3a3a3a;
	text-decoration: none;
	transition: all 0.3s;
}

.per-page-btn:hover {
	color: #000000;
	font-weight: 600;
}

.per-page-btn.active {
	color: #000000;
	font-weight: 600;
}

.per-page-label {
	margin-left: 8px;
	color: #3a3a3a;
}

.elementor-4158 .elementor-element.elementor-element-047a576 {
	row-gap: 8px;
}

.elementor-2315 .elementor-element.elementor-element-4f74e09 {
	row-gap: 8px;
}

/* ========== Checkout Page Styling ========== */

body.woocommerce-checkout {
	background: #fdfcfb;
	font-family: 'Inter', sans-serif;
	color: #101010;
}

/* Encadrement du résumé de commande */
#order_review {
	background: #fff;
	padding: 32px;
	border-radius: 12px;
	max-width: 900px;
}

#order_review table.shop_table {
	width: 100%;
	border-collapse: collapse;
}

#order_review th,
#order_review td {
	text-align: left;
	padding: 16px 12px;
	border-bottom: 1px solid #eee;
}

#order_review thead th {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
	background-color: #f7f7f7;
	color: #275c53;
}

#order_review tfoot th,
#order_review tfoot td {
	font-weight: bold;
	background: #f9f9f9;
}

/* Paiement */
.woocommerce-checkout #payment {
	margin-top: 40px;
}

.woocommerce-checkout .wc_payment_methods {
	margin-bottom: 24px;
}

.woocommerce-checkout .payment_box {
	background-color: #f0f4f3;
	border-left: 4px solid #275c53;
	padding: 16px;
	margin-top: 8px;
	font-size: 14px;
	color: #333;
}

.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper {
	margin-top: 24px;
	font-size: 13px;
	color: #666;
}

/* Bouton de validation */
#place_order {
	background-color: #275c53 !important;
	color: white !important;
	padding: 16px 32px;
	font-size: 14px;
	border-radius: 50px;
	font-weight: 400;
	border: none;
	transition: all 0.3s ease;
	width: 100%;
}

#place_order:hover {
	background-color: #1d403c !important;
}

/* Responsive */
@media screen and (max-width: 768px) {
	#order_review {
		padding: 16px;
	}

	#place_order {
		font-size: 14px;
		padding: 14px;
	}
}

#add_payment_method #payment ul.payment_methods li img,
.woocommerce-cart #payment ul.payment_methods li img,
.woocommerce-checkout #payment ul.payment_methods li img {
	width: 200px;
}

/* === Page Mon Compte – Bloc principal WooCommerce dans .entry-content === */

.entry-content .woocommerce {
	background-color: #fff;
	padding: 32px;
	border-radius: 12px;
	max-width: 1000px;
	margin: 40px auto;
	display: flex;
	gap: 32px;
	flex-wrap: wrap;
}

/* Navigation */
.entry-content .woocommerce-MyAccount-navigation {
	flex: 1 1 220px;
	min-width: 200px;
	border-right: 1px solid #eee;
	padding-right: 24px;
}

.entry-content .woocommerce-MyAccount-navigation ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.entry-content .woocommerce-MyAccount-navigation li a {
	display: block;
	padding: 12px 16px;
	color: #275c53;
	font-weight: 600;
	border-radius: 6px;
	transition: background 0.2s ease;
}

.entry-content .woocommerce-MyAccount-navigation li a:hover,
.entry-content .woocommerce-MyAccount-navigation .is-active a {
	background-color: #e2f1ef;
	color: #1d403c;
}

/* Contenu */
.entry-content .woocommerce-MyAccount-content {
	flex: 3 1 600px;
	padding-left: 24px;
	font-size: 14px;
	line-height: 1.6;
}

/* Champs & Boutons */
.entry-content .woocommerce-MyAccount-content input[type="text"],
.entry-content .woocommerce-MyAccount-content input[type="email"],
.entry-content .woocommerce-MyAccount-content input[type="password"] {
	width: 100%;
	padding: 12px;
	margin-bottom: 16px;
	border: 1px solid #ccc;
	border-radius: 6px;
}

.entry-content .woocommerce-MyAccount-content .button,
.entry-content .woocommerce-MyAccount-content button {
	background-color: #275c53;
	color: white;
	padding: 8px 24px;
	border-radius: 50px;
	border: none;
	font-size: 14px;
	font-weight: 400;
	transition: background 0.3s ease;
}

.entry-content .woocommerce-MyAccount-content .button:hover,
.entry-content .woocommerce-MyAccount-content button:hover {
	background-color: #1d403c;
}

/* Responsive */
@media (max-width: 768px) {
	.entry-content .woocommerce {
		flex-direction: column;
		padding: 16px;
	}

	.entry-content .woocommerce-MyAccount-navigation,
	.entry-content .woocommerce-MyAccount-content {
		padding: 0;
		border: none;
	}
}

.woocommerce-js table.shop_table td.download-file a,
.woocommerce-js table.shop_table td.woocommerce-orders-table__cell-order-actions a,
.woocommerce-page table.shop_table td.download-file a,
.woocommerce-page table.shop_table td.woocommerce-orders-table__cell-order-actions a {
	border-radius: 50px;
	padding: 8px 24px;
	font-size: 14px;
	font-weight: 400;
}

/* Masquer le lien "Téléchargements" dans Mon compte */
.entry-content .woocommerce-MyAccount-navigation-link--downloads {
	display: none !important;
}



.woocommerce .addresses .title .edit,
.woocommerce-account .addresses .title .edit {
	background-color: #275C53;
	color: #ffffff;
	border-radius: 50px;
	padding: 8px 24px;
}

.woocommerce .addresses .title .edit:hover,
.woocommerce-account .addresses .title .edit:hover {
	background-color: #1d403c;
}

body.woocommerce-cart .entry-content .woocommerce {
	display: block !important;
}

form #order_review:not(.elementor-widget-woocommerce-checkout-page #order_review) {
	padding: 16px 24px !important;
}

.carrousel-partners-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

.archive-title {
	text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.shopengine-widget .shopengine-product-tabs .woocommerce-Tabs-panel>h2:first-child {
	display: block;
}

.shopengine-widget .shopengine-advanced-search .shopengine-product-rating, .shopengine-widget .shopengine-advanced-search .shopengine-search-product__item--price {
	display: none;
}

@media (max-width: 768px) {
    .button-group-left {
			width: 100%;
	}}






.woocommerce-shipping-totals.shipping {
	position: relative;
}

.wms_pickup_open_modal_openstreetmap {
	position: absolute;
	top: 10px;
	right: -32px;
	background-color: transparent !important;
  box-shadow: none !important; /* au cas où il y aurait une ombre */
 color: #FF0000 !important;
	font-weight: 600;
}

button.wms_pickup_open_modal_openstreetmap:hover {
  background-color: transparent !important;
  color: black !important;
}


.zoom-marque-container {
  background-color: #d7e3e2;
  padding: 60px 30px;
  margin: 40px 0;
  font-family: inherit;
	width: 100vw;
	position: relative;
}

.zoom-marque-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: right;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.zoom-marque-titre {
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #0d4b4a;
}

.zoom-marque-nom {
  font-family: 'Georgia', serif;
  font-size: 22px;
  font-style: italic;
  margin-bottom: 20px;
  color: #0d4b4a;
}

.zoom-marque-description {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #043232;
	max-width: 1200px;
}

.zoom-marque-bouton {
  display: inline-block;
  background-color: #E2BB53;
  color: #565656;
  padding: 12px 32px;
  text-decoration: none;
  border-radius: 50px;
  transition: background-color 0.3s ease;
	text-align: center;
}

.zoom-marque-bouton:hover {
  background-color: #ffffff;
	color: #275c53;
}

.zoom-marque-logo img {
	display: none;
}

.zoom-marque-container img {
	position: absolute;
	top: 40%;
	left: 10%;
}

.zoom-marque-texte {
  max-width: 800px;
}


/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
	.zoom-marque-container img {
		width: 40%; /* encore plus petit */
		top:96px;
		left: 55%;
	}
.zoom-marque-container {
		max-width: 100%;
	padding: 48px 16px;
	}
	
	.zoom-marque-titre {
		font-size: 20px;
		text-align: center;
	}
	
	.zoom-marque-nom {
  font-size: 16px;
  margin: 32px 0 32px;
}
}

@media (max-width: 1025px) and (min-width: 769px){
	.zoom-marque-container img {
		width: 25%; /* encore plus petit */
		top:56px;
		left: 60%;
	}
.zoom-marque-container {
		max-width: 100vw;
	padding: 48px 16px;
	}
	.zoom-marque-content {
		justify-content: center;
	}
}