/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 22 2025 | 07:01:35 */
/* 1. Định dạng khung cố định cho button mới */
#btn-cart-fixed {
    position: fixed !important;
    bottom: 20px !important;
    left: 20px !important;
    z-index: 999999 !important;
    width: 60px !important;
    height: 60px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background-color: transparent !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

/* 2. Hiển thị icon trolley của bạn */
#btn-cart-fixed::before {
    content: "" !important;
    display: block;
    width: 50px;
    height: 50px;
    background-image: url('https://netdepconggiao.com/wp-content/uploads/2025/12/trolley.png') !important;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    /* Đổ bóng nhẹ cho icon */
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.2));
}

/* 3. Hiệu ứng Hover */
#btn-cart-fixed:hover {
    transform: scale(1.1) rotate(-5deg) !important;
}

/* 4. Tối ưu cho Mobile */
@media (max-width: 767px) {
    #btn-cart-fixed {
        bottom: 55px !important;
        right: 15px !important;
        width: 50px !important;
        height: 50px !important;
    }
    #btn-cart-fixed::before {
        width: 42px !important;
        height: 42px !important;
    }
}