/* ==========================================================
   Product Card Actions
   ========================================================== */

.product_actions{
    display:flex;
    width:100%;
    margin-top:6px;
    background:transparent;
    border-top:none;
}

.product_action{
    width:50%;
    height:38px;
    padding:0;
    border:0;
    background:transparent;
    color:#d6b56b;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:background .15s,color .15s;
}

.product_action + .product_action{
    border-left:none;
}

.product_action svg{
    width:28px;
    height:28px;
    fill:none;
    stroke:currentColor;
    stroke-width:2.2;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.product_action:hover svg{
    fill:currentColor;
}

.product_action:hover{
    background:#1f1f1f;
    color:#f3c96a;
}

.product_action:active{
    background:#141414;
    color:#d8b15a;
}
