@charset 'UTF-8';

*button:focus {
    box-shadow: none !important;
}

img {
    max-width: 100%;
}

/*product*/

.product-list006 .product-list {
    z-index: 2;
    position: relative;
}

.product-list006 .product-item {
    position: relative;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
    margin-bottom: 2rem;
}

.product-list006 .product-item::before {
    content: '';
    display: block;
    width: 100%;
    height: 5px;

    position: absolute;
    left: 0;
    bottom: 0;
}

.product-list006 .product-item:hover::before {
    height: 100%;
    transition: all 0.3s ease-in-out;
}

.product-list006 .product-item:hover::after {
    width: 30px;
    height: 30px;

    transition: all 0.3s ease-in-out;
}

.product-list006 .product-item:hover .product-img {
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    transition: all 0.3s ease-in;
    background-color: rgb(237, 237, 237, 1);
    background-blend-mode: multiply;
}

.product-list006 .product-img {
    position: relative;
    background-size: 100%;
}

.product-list006 .product-img::before {
    content: '';
    display: block;
    padding-bottom: 75%;
}

.product-list006 .product-name {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    height: 60px;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    padding: 0.8rem 1rem 0;
    position: relative;
    border-top-width: 1px;
    border-top-style: 1px;
    
}



.product-list006 .product-more-btn {
    display: flex;
    justify-content: center;
    margin-top: -5px;
}

.product-list006 .product-more-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;

    font-size: 18px;
    z-index: 2;
}

.product-list006 .product-more-btn a i {
    position: relative;
    top: 11px;
    border-radius: 50%;
    background-color: #e3af00;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease-in-out;
}


.product-list006 .product-item:hover .product-more-btn a i {
    background-color: #fff;
    color: #e3af00;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.3);
}