.animaux-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--wp--custom--gap);
    width: 100%;
}

.boeuf-container, .veau-container, .agneau-container, .porc-container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: var(--wp--custom--block-gap);
    width: 100%;
}
.porc-svg, .agneau-svg, .veau-svg, .boeuf-svg{
    width: 100%;
    height: 100%;
}
.poule-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: var(--wp--custom--block-gap);
    width: 100%;
    align-items: center;
}
.boeuf-title{
    width: 100%;

}
.title{
    font-family: var(--wp--preset--font-family--instrumentserif);
    font-size: var(--wp--preset--font-size--callout);
    font-weight: 400;
    font-style: italic;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--wp--preset--color--button-bg);
    width: fit-content;
}
.boeuf-content-wrapper, .veau-content-wrapper, .agneau-content-wrapper, .porc-content-wrapper{
    width: 100%;
    gap: 60px;
    display: flex;
    flex-direction: column;
}
.boeuf-content{
    gap: 60px;
    display: flex;
    flex-direction: column;
}
.viande-title {
    font-family: var(--wp--preset--font-family--instrumentserif);
    font-size: var(--wp--preset--font-size--callout);
    font-weight: 400;
    font-style: italic;
    color: var(--wp--preset--color--button-bg);
}

.poule-content{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
}

.poule{
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

svg .part, svg .circle{
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
svg g.part{
    fill: var(--wp--preset--color--transparent);
}

.st1 {
    fill: #f0504c;
}
.part:hover, .st1:hover path.part ,.part.active{
    fill: #f0504c ;
}
.viande-part {
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  
.viande-part.show {
    opacity: 1;
    transform: translateY(0);
  }

  @media not all and (min-width: 1536px) {
}

@media not all and (min-width: 1280px) {
    .boeuf-content-wrapper{
        gap: 40px;
    }
    .boeuf-content{
        gap: 40px;
    }
}
@media not all and (min-width: 1024px) {
    .animaux-container{
        gap: 100px;
    }
    .boeuf-container, .agneau-container,.poule-container{
        flex-direction: column-reverse;
    }
    .veau-container, .porc-container {
        flex-direction: column;
    }
}
@media not all and (min-width: 768px) {
    
}
@media not all and (min-width: 640px) {
    
}
  

