.catalogue .uniformSpacing {
    display: flex;
    flex-direction: column;
    gap: 1.75em;
}

.catalogue h1{
    font-size: 2em;
    font-weight: 700;
}

.catalogue .filters {
    display: flex;
    overflow-y: auto;
    gap: .5em;
    width: 100%;
    padding-bottom: .5em;
    margin-bottom: -.5em;
}

.catalogue .filters p {
    background-color: var(--basicColor2);
    color: var(--basicBlack);
    border-radius: var(--bigRadius);
    padding: 1em;
    height: fit-content;
    min-width: fit-content;
    transition: ease all .3s;
    cursor: pointer;
}

.catalogue p.actif {
    background-color: var(--basicColor1);
    color: var(--basicWhite);
}

.catalogue .containerProducts {
    display: flex;
    flex-direction: column;
    gap: .5em;
    position: relative;
}

.catalogue .containerProducts img {
    width: 5em;
    height: 5em;
    object-fit: cover;
    border-radius: var(--smallRadius);
    min-width: 5em;
    min-height: 5em;
}

.catalogue .containerProducts .product {
    display: flex;
    gap: 1em;
    padding: 1em .5em;
    background-color: var(--basicColor2);
    border-radius: var(--smallRadius);
    align-items: center;
    color: var(--basicBlack);
    font-size: 1em;
}

.catalogue .containerProducts .product > div{
    display: flex;
    flex-direction: column;
    gap: .5em;
    width: 100%;
}

.catalogue .containerProducts .product > div > div {
    display: flex;
    gap: .5em;
    flex-direction: column;
}

.catalogue .containerProducts .product p{
    word-break: break-all;
}

.catalogue .containerProducts .product > div > div .numberInput{
    display: flex;
    justify-content: flex-end;
}

.catalogue .containerProducts .product > div > div input {
    width: 4em;
    border-radius: var(--basicRadius);
    border: 1px solid var(--basicColor4);
    background-color: var(--basicWhite);
    font-size: 1em;
    padding: .5em 1em;
    text-align: center;
}

.catalogue .containerProducts .product .containerInfoContact {
    display: flex;
    flex-direction: column;
    gap: .5em;
}
.catalogue .containerProducts .product .containerInfoContactLink {
    display: flex;
    flex-direction: column;
    gap: .3em;
}

.catalogue .submit{
    position: fixed;
    bottom: 13%;
    left: 0;
    height: fit-content;
    width: 100%;
    background-color: white;
    padding: .5em;
    display: flex;
    justify-content: center;
    border-bottom-left-radius: var(--bigRadius);
    border-bottom-right-radius: var(--bigRadius);
    
}

.submit input{
    background-color: var(--basicColor1);
    color: var(--basicWhite);
    width: fit-content;
    text-align: center;
    border-radius: var(--bigRadius);
    border: none;
    padding: .5em 1em;
    font-size: 1em;
}