/* ==================================================
   shop.min.css
   Tách từ customs.min.css (giữ nguyên source gốc)
================================================== */

/** Tùy chỉnh hiển thị danh sách sản phẩm trong shop / taxonomy **/

/* đảm bảo vùng chứa */
.product-thumb{
    position:relative;
    overflow:hidden;
}

/* ACTION ban đầu ẩn + nằm dưới */
.product-actions{
    position:absolute;
    left:50%;
    bottom:-40px;
    transform:translateX(-50%);
    display:flex;
    gap:6px;
    opacity:0;
    transition:all .3s ease;
}

/* hover -> trượt lên */
.product-card:hover .product-actions{
    bottom:10px;
    opacity:1;
}

/* style nút */
.product-actions a{
    width:34px;
    height:34px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 3px 8px rgba(0,0,0,.2);
    font-size:14px;
    text-decoration:none;
    transform:scale(.9);
    transition:all .2s ease;
}

/* hover từng nút */
.product-actions a:hover{
    background:#e60000;
    color:#fff;
    transform:scale(1.1);
}

