#wccd-button {
    position: fixed;
    bottom: 20px;
    z-index: 99999;
    padding: 12px 16px;
    border-radius: 999px;
    color: #fff;
    border: none;
    cursor: pointer;
}

.wccd-right { right: 20px; }
.wccd-left { left: 20px; }

#wccd-drawer {
    position: fixed;
    top: 0;
    width: 360px;
    height: 100%;
    background: #fff;
    z-index: 99998;
    transition: 0.3s;
    box-shadow: -10px 0 30px rgba(0,0,0,0.2);
    padding: 20px;
}

.wccd-drawer-right { right: -400px; }
.wccd-drawer-right.active { right: 0; }

.wccd-drawer-left { left: -400px; }
.wccd-drawer-left.active { left: 0; }

#wccd-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 99997;
}

#wccd-overlay.active {
    display: block;
}