#dd-cart-float-btn {
position: fixed;
bottom: 25px;
right: 25px;
background: #ffffff;
color: #333;
border: 1px solid #ccc;
font-size: 24px;
padding: 14px 18px;
border-radius: 50px;
cursor: pointer;
z-index: 10000;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 12px rgba(0,0,0,0.3);
transition: background 0.3s ease;
}
.dd-cart-count {
background: #e74c3c;
font-size: 14px;
font-weight: bold;
padding: 2px 6px;
margin-left: 8px;
border-radius: 50%;
min-width: 20px;
text-align: center;
}
#dd-cart-drawer {
position: fixed;
top: 0;
right: -400px;
width: 350px;
height: 100%;
background: #fff;
box-shadow: -2px 0 10px rgba(0,0,0,0.2);
z-index: 9999;
display: flex;
flex-direction: column;
transition: right 0.3s ease;
}
#dd-cart-drawer.open {
right: 0;
}
#dd-cart-backdrop {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.5);
display: none;
z-index: 9998;
}
#dd-cart-backdrop.show {
display: block;
}
#dd-cart-drawer-header {
padding: 15px;
background: #f8f8f8;
font-weight: bold;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid #eee;
font-size: 18px;
}
#dd-cart-close {
background: none;
border: none;
font-size: 24px;
cursor: pointer;
line-height: 1;
color: #888;
}
#dd-cart-drawer-body {
flex: 1;
overflow-y: auto;
padding: 15px;
}
#dd-cart-drawer-footer {
padding: 15px;
border-top: 1px solid #eee;
display: flex;
gap: 10px;
flex-direction: column;
}
#dd-cart-drawer-footer .button {
text-align: center;
width: 100%;
padding: 12px;
font-size: 16px;
border-radius: 6px;
}
.woocommerce-mini-cart-item .remove {
float: right;
color: #e74c3c;
font-weight: bold;
text-decoration: none;
margin-left: 10px;
font-size: 18px;
}
.woocommerce-mini-cart-item .remove:hover {
color: #c0392b;
}
.woocommerce-mini-cart-item {
margin-bottom: 15px;
padding-bottom: 10px;
border-bottom: 1px solid #f0f0f0;
}
.woocommerce-mini-cart__buttons {
display: none !important;
}