/*Changement de la taille de police des titres dans le footer*/
.footer .widget.widget_text .thb-widget-title, .footer .widget .thb-widget-title {
	font-size: 20px;
}
.footer .widget.widget_text p {
    margin-bottom: 15px;
}

/*Enleve le gras au bouton de traduction*/
#glt-translate-trigger > span {
    font-weight: 100;
}

/*Grille de produits de l'accueil*/
@media screen and (max-width: 480px) {
	.grille_produit .wc-block-grid__products {
			display: grid !important;
		grid-template-columns: repeat(2,1fr);
	}
}

/*Changement taille police bandeau de surete*/
@media screen and (max-width: 1068px) {
	.wp-block-heading {
		font-size: 1.375rem;
	}
}

@media screen and (min-width: 782px) and (max-width: 1180px) {
	.bandeau_reassurage 	{
    display: grid !important;
    grid-template-columns: repeat(3,1fr);
		justify-items: center;
	}
	
	.bandeau_reassurage .wp-block-column {
		margin: auto;
	}
}

/*gestion du menu*/
.thb-full-menu {
	align-content: center;
	height: 20px;
	margin: auto;
}

/*Bouton subheader*/
.bouton_subheader {
	display: inline-block;
	color: black;
	border: 1px solid var(--color-secondary);
	padding: 5px;
	border-radius: 40px;
	background-color: var(--color-secondary);
}

@media screen and (max-width: 1068px) {
	.subheader {
		display: block;
		white-space: normal;
		line-height: 1.75;
	}
}

/*nb article categorie*/
.count {
	display: none;
}

/*Icone reseau pied de page*/
.widget_bttk_social_links ul li a {
	background: var(--color-secondary);
	color: black;
	height: 50px;
	width:50px;
}

.widget_bttk_social_links svg {
	font-size:30px;
}

/*Taille image feed insta*/
.wp-block-jetpack-instagram-gallery__grid-post {
	height: 60%;
	display: flex;
	justify-content: center;
}

.wp-block-jetpack-instagram-gallery__grid-post img {
	object-fit: contain;
}

.texte-flou {
	border-radius: 10px;
	backdrop-filter: blur(3px);
	width: fit-content;
}

.thb-filter-bar {
	position: -webkit-sticky;
	position: sticky;
	top: 80px;
	z-index: 2;
	background-color: white;
}

/*Personnalisation*/
#menu-item-8017 > a {
	background-color: rgba(21, 71, 71, 0.1);
}

/*Collection menu*/
#menu-item-9093 {
    position: relative;
    overflow: hidden;
}

/* Génération de multiples étoiles avec différents délais */
#menu-item-9093::before,
#menu-item-9093::after,
#menu-item-9093::before, /* Ajout d'autres pseudo-éléments pour plus d'étoiles */
#menu-item-9093::after {
    content: "⭐";
    position: absolute;
    color: yellow;
    font-size: 1.2em;
    opacity: 0;
    transform: translateY(-10px) scale(1);
    z-index: 10; /* Les étoiles passent devant le texte */
}

/* Au hover, les étoiles apparaissent et tombent avec des délais alternés */
#menu-item-9093:hover::before {
    left: 15%;
    animation: fall-stars 1.5s ease-in infinite;
    animation-delay: 0s;
}

#menu-item-9093:hover::after {
    left: 70%;
    animation: fall-stars 1.5s ease-in infinite;
    animation-delay: 0.3s;
}

#menu-item-9093:hover::before,
#menu-item-9093:hover::after {
    opacity: 1;
}

/* Animation de chute des étoiles */
@keyframes fall-stars {
    0% {
        transform: translateY(-10px) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(200%) scale(1.5);
        opacity: 0;
    }
}

/*Arrondis sur les images des categories*/
.image_categorie img{
	box-sizing: border-box;
	height:auto;
	max-width: 100%;
	vertical-align: bottom;
	border-radius: 10px;
}