.prodAddCart{
    --prodAddCart-background: black;
    --prodAddCart-color: rgb(255, 255, 255);
    --prodAddCart-padding:10px 0px;

    display: flex;
    justify-content: start;
    align-items: center;

    font-size: 16px;
    font-weight: 500;
}
.prodAddCart .prodAddCart_btn{
    border-radius: 4px;
    box-shadow: 0 0 0 0 transparent;
    cursor: pointer;
    text-align: center;
    transition: background 0.2s ease-in-out;
    background-color: var(--prodAddCart-background);
    color: var(--prodAddCart-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--prodAddCart-padding);

    width: 280px;
    box-sizing: content-box;
}

.prodAddCart .prodAddCart_btn a{
    color: inherit;
    font-family: inherit;
    font-weight: inherit;
    text-decoration: inherit;
    font-style: inherit;

    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: inherit;
    flex-direction: inherit;
}