.container-boutique-param {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    width: 100%;
}

.boutique-param-container {
    display: flex;
    gap: 20px;
    padding: 20px 9.4% 0 9.4%;
    box-sizing: border-box;
    width: 100%;
}

.container-boutique {
    align-items: flex-start;
    padding-top: 10px;
}

.card-vetement {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    gap: 5px;
    width: 20%;
    margin: 10px;
}

.card-img-container {
    width: 100%;
    display: flex;
}

.card-img-container:hover {
    cursor: pointer;
}

.card-img-container > img {
    transition: 0.3s;
}

.card-img-container:hover > img {
    filter: brightness(80%);
}

.card-img {
    width: 100%;
}

.card-info {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
}

.card-price {
    font-weight: bold;
}

.card-price-button {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.card-button {
    color: var(--white);
    background: var(--black);
    border: none;
    padding: 5px 15px;
    cursor: pointer;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    text-decoration: none;
}

.card-button:hover {
    color: var(--gold);
}

.input-vetement-wrapper {
    width: 100%;
    position: relative;
}

.card-input {
    border-right: solid 1px gray;
    border-top: solid 1px gray;
    border-bottom: solid 1px gray;
    border-left: none;
    height: 100%;
    width: 100%;
    min-width: 40px;
    padding: 5px 20px 5px 5px;
    box-sizing: border-box;
}

.input-vetement-up,
.input-vetement-down {
    position: absolute;
    right: 0;
    font-size: 1.25rem !important;
}

.input-vetement-up:hover,
.input-vetement-down:hover {
    color: var(--gold);
    cursor: pointer;
}

.input-vetement-up {
    top: 0;
}

.input-vetement-down {
    bottom: 0;
}

.input-vetement-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}

.input-vetement {
    position: relative;
    display: flex;
    align-items: stretch;
    width: 110px;
}

.vetement-stock-warning {
    font-size: 0.7rem;
    color: rgb(228, 75, 75);
    width: fit-content;
}

.input-vetement input::-webkit-outer-spin-button,
.input-vetement input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
.input-vetement input[type=number] {
    appearance: textfield;
}

/* Menu filtre */

.filtre-menu-container {
    visibility: hidden;
    opacity: 0;
    padding: 0 9.4% 0 9.4%;
    height: 0;
    transition: 0.5s padding;
}

.filtre-menu-active {
    visibility: visible;
    opacity: 1;
    height: fit-content;
    padding: 20px 9.4% 0 9.4%;
}

.filtre-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
}

.filtre-form button,
.filtre-form a {
    width: 100px;
    box-sizing: border-box;
    font-size: 0.7rem;
}

.filtre-tile-container {
    display: flex;
    gap: 20px;
}

.filtre-tile {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.filtre-tile input{
    border: solid 1px var(--gray);
    border-radius: none;
    padding: 5px 10px;
}