﻿/* 產品項目 /product/item */
.section-product .card {
    border: none;
    background-color: transparent;
    margin-bottom: 1rem;
}

    .section-product .card .badge {
        position: absolute;
        top: 10px;
        left: 10px;
        color: #ffffff;
        font-size: 14px;
        background-color: #707070;
        padding: 0.2em 0.4em;
        border-radius: 0.25em;
    }

    .section-product .card .oprice {
        text-decoration: line-through;
        font-size: 14px;
        color: #999999;
    }

    .section-product .card .unit:before {
        content: "/ ";
    }

    .section-product .card h3 {
        font-size: 14px;
        line-height: 1.4;
        height: 60px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        white-space: normal;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .section-product .card .price-box {
        margin-bottom: 0.5rem;
    }

.section-product .card-img-top {
    position: relative;
}

    .section-product .card-img-top > a {
        position: relative;
        display: block;
    }

    .section-product .card-img-top img.hover-show {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        transition: opacity 500ms ease;
    }

    .section-product .card-img-top:not(:hover) img.hover-show {
        opacity: 0 !important;
    }

    .section-product .card-img-top .btn-wrapper {
        position: absolute;
        right: 15px;
        bottom: 15px;
        display: flex;
        flex-direction: column;
        border-color: rgba(255, 255, 255, 0.9);
        background-color: rgba(255, 255, 255, 0.9);
        border-radius: 50%;
        opacity: 0;
    }

    .section-product .card-img-top:hover .btn-wrapper {
        opacity: 0.9;
    }

    .section-product .card-img-top .btn-wrapper div {
        width: 50px;
        height: 50px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
    }

.section-product .card-body {
    font-size: 14px;
    padding: 0.5rem 0;
    text-align: center;
}

/* 產品加入收藏 */
.section-product .add-favorites i.fa-heart {
    color: #e63349;
}

.section-product .add-favorites:hover i.fa-heart,
.section-product .add-favorites.added i.fa-heart {
    display: inline;
}

.section-product .add-favorites i.fa-heart,
.section-product .add-favorites.added i.fa-heart-o,
.section-product .add-favorites:hover i.fa-heart-o {
    display: none;
}


@media (min-width:768px) {
}

@media (min-width:992px) {
}

@media (min-width:1200px) {
    .section-product .card {
        padding: 0 0.5rem;
    }
}
