.meo-compare-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 888;
    pointer-events: none; /* Để phần trong suốt không chặn chuột */
    display: block !important; /* Ghi đè style ẩn mặc định nếu JS load xong */
}

.meo-compare-bar .compare-content {
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
    padding: 10px 20px;
    display: flex;
    justify-content: center; /* Căn giữa nội dung */
    align-items: center;
    gap: 20px;
    pointer-events: auto; /* Kích hoạt lại chuột cho thanh này */
    border-top: 3px solid #000; /* Viền màu đen sang trọng */
}

.meo-compare-bar .compare-text {
    font-weight: bold;
    font-size: 14px;
    color: #333;
}

.meo-compare-bar .action.compare-go {
    background-color: #000;
    color: #fff;
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
    font-size: 13px;
    text-transform: uppercase;
}

.meo-compare-bar .action.compare-go:hover {
    background-color: #333; 
}

.meo-compare-bar .compare-clear {
    color: #999;
    font-size: 12px;
    text-decoration: underline;
}