.product_card{
    width: 100%;
    height: fit-content;


    background-color: var(--background-200);
    border: solid 1px var(--background-300);




    display: grid;
    grid-template-columns: auto 1fr;
    border-radius: .25rem;
    overflow: hidden;


}

.product_img_layout{
    width: 100%;
    aspect-ratio: 1/1;
    position: relative;
}

.product_img{
    position: absolute;
    width: 100%;
    aspect-ratio: 1/1;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

}

.product_label{
    position: absolute;
    top: .5rem;
    right: .5rem;
    z-index: 101;
    background-color: white;
}

.product_body{
    display: flex;
    flex-direction: column;
    padding: .5rem;

}

#get_product{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
    gap: 1rem;
}




.categorie__button{
    display: block;

    display: flex;
    flex-direction: row;
    gap: .5rem;
    width: calc(100% - 2rem);
    padding: .5rem;
    position: relative;
    margin-top: .5rem;
    border-radius: .25rem;
    justify-content: space-between;

    background-color: var(--background-200);
    border: solid 1px var(--background-300);

    color: var(--font-300);



  }

  .product__categorie__quantity{
    height: 1.5rem;
    width: 1.5rem;
    color: lightgray;
    text-align: center;
    font-size: 10px;
    border-radius: .125rem;
}


.categorie__icon{
  width: 1.5rem;
  height: 1.5rem;
  background-position: center;
  background-size: cover;
}

.store_aside{
    min-width: 200px;
}