body {
    color: #fefefe;
    display: flex;
    flex-direction: column;
}

section.boutique {
    width: 96%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
    align-self: center;
}

section.boutique article p {
    width: 90%;
    text-align: left;
    margin: 0;
}

section.boutique article p#titre {
    text-align: center;
    margin: 12px;
    font-weight: bold;
}

section.boutique article p#price {
    width: fit-content;
    background-color: #43476b;
    color: #fefefe;
    margin-left: auto;
    height: 45px;
    width: 75px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-left: 12px;
    padding-right: 12px;
    border-top-left-radius: 12px;
    margin-top: auto;
}

section.boutique article {
    border: #181A2C 2px solid;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.3s ease;
    background-color: #fefefe;
    color: #181A2C;
}

section.boutique article:hover {
    transform: scale(1.05);
    z-index: 2;
}

section.boutique article img {
    width: 90%;
    height: auto;
    margin-top: 20px;
}