/*
Theme Name: Woodmart Child
Theme URI: https://yourwebsite.com
Description: Child theme for Woodmart
Author: Your Name
Template: woodmart
Version: 1.0.0
*/
.mobile-buy-bar{

position:fixed;
bottom:-100px;
left:0;
right:0;
background:#000;
color:#fff;
display:flex;
justify-content:space-between;
align-items:center;
padding:12px 16px;
z-index:9999;
transition:0.3s;

}

.mobile-buy-bar.show{
bottom:0;
}

.mobile-buy-left{
display:flex;
flex-direction:column;
}

.mobile-buy-price{
font-size:16px;
font-weight:bold;
}

.mobile-free-ship{
font-size:12px;
color:#00ff9c;
}

.mobile-buy-btn{

background:#fff;
color:#000;
border:none;
padding:10px 18px;
font-weight:bold;
border-radius:4px;

}

@media(min-width:768px){
.mobile-buy-bar{
display:none;
}
}