@media screen and (max-width: 768px) {
    .floating-product-box {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #fff;
        border-top: 1px solid #ddd;
        padding: 12px 16px;
        box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
        z-index: 9999;
        display: none;
    }

    .fpb-info {
        display: flex;
        width: 100%;
        flex-direction: column;
    }

    .fpb-title,  .fpb-price {
        font-size: 14px;
        font-weight: 500;
        color: #000;
    }

    .fpb-button{
        width: 100%;
        background: #000;
        border: none;
        border-radius: 4px;
        text-align: center;
    }

    .fpb-button a.fpb-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        font-size: 14px;
        background: #000;
        color: #fff;
        border-radius: 4px;
        text-decoration: none;
        padding: 0 10px;  
    }
}
